@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://trenoviquralo.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://trenoviquralo.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 */

/* ====== Шапка: новый деловой стиль ====== */
.hq-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #0b1220 0%, #0e1626 60%, #0b1220 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(12px, 2.8vw, 22px) 0;
  animation: hq-dropfade 700ms ease-out;
}

.hq-layout {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

/* Бренд */
.hq-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.hq-logo-frame {
  display: inline-grid;
  place-items: center;
  width: clamp(36px, 4.2vw, 48px);
  height: clamp(36px, 4.2vw, 48px);
  border-radius: 12px;
  background: radial-gradient(120% 120% at 30% 20%, #2b3a64 0%, #17223a 70%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 10px 25px rgba(0,0,0,0.35);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.hq-logo-pic {
  display: block;
  width: 65%;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
  background-color: #ffffff;
  border-radius: 6px;
}

.hq-brand-link:hover .hq-logo-frame {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 14px 30px rgba(0,0,0,0.45);
}

.hq-brand-title {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(16px, 1.6vw, 20px);
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Навигация (десктоп) */
.hq-nav-rail {
  display: none;
}

@media (min-width: 1025px) {
  .hq-nav-rail {
    display: block;
  }
}

.hq-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(18px, 3vw, 36px);
}

.hq-nav-item { position: relative; }

.hq-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 17px);
  color: #e6ebf5;
  padding: 10px 12px;
  border-radius: 10px;
  transition: color 300ms ease, background-color 300ms ease, transform 300ms ease;
  position: relative;
  isolation: isolate;
}

.hq-nav-link .hq-ico {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: 0.9;
  transition: transform 300ms ease, opacity 300ms ease;
}

.hq-nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, rgba(96,165,250,0) 0%, rgba(96,165,250,0.9) 50%, rgba(96,165,250,0) 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 350ms ease;
}

.hq-nav-link:hover {
  color: #9cc7ff;
  background-color: rgba(255,255,255,0.03);
  transform: translateY(-1px);
}

.hq-nav-link:hover .hq-ico { transform: translateY(-1px); opacity: 1; }
.hq-nav-link:hover::after { transform: scaleX(1); }

.hq-nav-link:focus-visible {
  outline: 2px solid #9cc7ff;
  outline-offset: 2px;
  background-color: rgba(156,199,255,0.08);
}

/* Бургер и его контейнер (оставляем классы для JS) */
.hq-menu-toggle { display: block; }

.burger {
  width: 34px;
  height: 26px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 250ms ease;
}

.burger span,
.burger::before,
.burger::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #e6ebf5;
  border-radius: 3px;
  transition: transform 300ms ease, opacity 300ms ease, width 300ms ease;
}

.burger::before { position: relative; top: 0; }
.burger::after { position: relative; bottom: 0; }

.burger:hover { transform: scale(1.05); }
.burger:hover span { width: 85%; }

@media (min-width: 1025px) {
  .hqlayout-gap { gap: 20px; }
  .hq-menu-toggle { display: none; }
}

/* Состояние открытого бургера */
.burger.is-open::before {
  transform: translateY(11px) rotate(45deg);
}
.burger.is-open::after {
  transform: translateY(-11px) rotate(-45deg);
}
.burger.is-open span {
  opacity: 0;
}

/* ====== Мобильное меню (оставляем .elite-mobile-menu для JS) ====== */
.elite-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,16,28,0.98) 0%, rgba(18,27,46,0.98) 100%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  backdrop-filter: blur(6px) saturate(120%);
  transform: translateX(100%);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1), opacity 300ms ease;
  opacity: 0;
  z-index: 999;
}

.elite-mobile-menu.is-open {
  display: block;
  transform: translateX(0%);
  opacity: 1;
}

.hq-mm-inner {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(24px, 6vw, 48px);
}

.hq-mm-list {
  list-style: none;
  margin: 0;
  padding: 0;
  align-self: center;
  display: grid;
  gap: clamp(22px, 4vw, 36px);
  text-align: center;
}

.hq-mm-item { opacity: 0; transform: translateY(10px); }
.elite-mobile-menu.is-open .hq-mm-item { 
  animation: hq-rise 420ms ease forwards;
}
.elite-mobile-menu.is-open .hq-mm-item:nth-child(1) { animation-delay: 80ms; }
.elite-mobile-menu.is-open .hq-mm-item:nth-child(2) { animation-delay: 160ms; }
.elite-mobile-menu.is-open .hq-mm-item:nth-child(3) { animation-delay: 240ms; }

.mobile-nav-connection {
  display: inline-block;
  text-decoration: none;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(22px, 6vw, 30px);
  color: #eef3ff;
  padding: 12px 16px;
  border-radius: 14px;
  transition: background-color 250ms ease, transform 250ms ease, letter-spacing 250ms ease;
}

.mobile-nav-connection:hover {
  background-color: rgba(156,199,255,0.08);
  transform: translateY(-1px);
  letter-spacing: 0.06em;
}

.hq-mm-foot {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
  text-align: center;
}

.hq-mm-note {
  margin: 0;
  font-size: clamp(12px, 2.6vw, 14px);
  color: #b9c6dd;
}

/* ====== Анимации ====== */
@keyframes hq-dropfade {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hq-rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ====== Мелкие правки для читабельности и адаптива ====== */
@media (max-width: 1024px) {
  .hq-layout {
    grid-template-columns: 1fr auto;
  }
  .hq-nav-rail { display: none; }
}

@media (max-width: 600px) {
  .hq-brand-title { font-size: 16px; }
}

/* Высокая контрастность текста на фоне */
.hq-bar, .hq-bar * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


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

/* =========================
   HERO — деловой премиум-стиль
   ========================= */
.boardroom-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 14vh, 160px) 0;
  background: radial-gradient(120% 120% at 20% 10%, #12203a 0%, #0e1628 45%, #0b1220 100%);
  color: #eaf2ff;
  isolation: isolate;
}

/* Декор фоновой сеткой и бликами */
.boardroom-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 140%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 32px),
    radial-gradient(60% 60% at 80% 20%, rgba(52, 103, 206, 0.20) 0%, rgba(52,103,206,0.0) 60%);
  pointer-events: none;
  transform: translateZ(0);
}

.boardroom-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -12%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(156,199,255,0.18) 0%, rgba(156,199,255,0) 70%);
  filter: blur(10px);
  pointer-events: none;
  animation: brd-glow 6s ease-in-out infinite alternate;
}

/* Сетка секции */
.boardroom-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

@media (min-width: 1024px) {
  .boardroom-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(40px, 6vw, 80px);
  }
}

/* Контент */
.boardroom-hero__content { 
  position: relative; 
  z-index: 1; 
  animation: brd-rise 700ms ease-out both;
}

.boardroom-hero__title {
  margin: 0 0 18px 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.01em;
  font-size: clamp(32px, 6.2vw, 56px);
  color: #f4f7ff;
  text-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.boardroom-hero__title-accent {
  background-image: linear-gradient(92deg, #9cc7ff 0%, #5aa0ff 50%, #c6e0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.boardroom-hero__lead {
  margin: 0 0 24px 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.7;
  font-size: clamp(16px, 2.1vw, 18px);
  color: #c9d6ea;
  max-width: 62ch;
  opacity: 0.95;
}

.boardroom-hero__points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
}

@media (min-width: 600px) {
  .boardroom-hero__points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }
}

.boardroom-hero__point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.boardroom-hero__point:hover {
  transform: translateY(-2px);
  background-color: rgba(156,199,255,0.06);
  border-color: rgba(156,199,255,0.22);
}

.boardroom-hero__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: #9cc7ff;
  opacity: 0.95;
}

/* CTA */
.boardroom-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.boardroom-hero__cta {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 14px 28px;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(14px, 1.8vw, 16px);
  color: #0c1424;
  background: linear-gradient(135deg, #b7d5ff 0%, #67a7ff 50%, #2e7cf7 100%);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(46,124,247,0.35), 0 1px 0 rgba(255,255,255,0.6) inset;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  overflow: hidden;
}

.boardroom-hero__cta::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -30%;
  width: 30%;
  height: 200%;
  transform: rotate(25deg);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 50%, rgba(255,255,255,0) 100%);
  animation: brd-shine 2.8s ease-in-out infinite;
}

.boardroom-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(46,124,247,0.45);
  filter: saturate(1.05);
}

.boardroom-hero__cta:focus-visible {
  outline: 2px solid #9cc7ff;
  outline-offset: 3px;
}

/* Медиа-блок */
.boardroom-hero__media {
  position: relative;
  z-index: 1;
  animation: brd-rise 820ms ease-out 80ms both;
}

.boardroom-hero__figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  transform: translateZ(0);
}

.boardroom-hero__image {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.002);
  transition: transform 600ms ease, filter 600ms ease;
  filter: brightness(0.98) contrast(1.04) saturate(1.02);
}

.boardroom-hero__figure:hover .boardroom-hero__image {
  transform: scale(1.015);
  filter: brightness(1) contrast(1.06) saturate(1.05);
}

/* Плавающая KPI-карточка */
.boardroom-hero__kpi {
  position: absolute;
  left: 6%;
  bottom: -14px;
  transform: translateY(0);
  background: rgba(8, 14, 26, 0.7);
  border: 1px solid rgba(156,199,255,0.25);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: brd-float 5.2s ease-in-out infinite;
  max-width: 88%;
}

.boardroom-hero__kpi-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.boardroom-hero__kpi + .boardroom-hero__kpi-row { margin-top: 6px; }

.boardroom-hero__kpi-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #0b1324;
  background: linear-gradient(135deg, #a8d1ff 0%, #6aa9ff 100%);
  border-radius: 999px;
}

.boardroom-hero__kpi-label {
  font-size: 14px;
  font-weight: 700;
  color: #e6eeff;
}

.boardroom-hero__kpi-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #6aa9ff;
  box-shadow: 0 0 0 6px rgba(106,169,255,0.18);
}

.boardroom-hero__kpi-note {
  font-size: 13px;
  color: #c3d2ec;
}

/* Анимации */
@keyframes brd-rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes brd-shine {
  0%   { left: -30%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

@keyframes brd-glow {
  from { transform: scale(1); opacity: 0.8; }
  to   { transform: scale(1.05); opacity: 1; }
}

@keyframes brd-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Адаптив/доступность */
@media (max-width: 1023.98px) {
  .boardroom-hero__kpi { left: 10px; right: 10px; bottom: -12px; }
}

@media (max-width: 599.98px) {
  .boardroom-hero { padding: clamp(64px, 14vh, 120px) 0 96px; }
  .boardroom-hero__title { font-size: clamp(28px, 8vw, 40px); }
  .boardroom-hero__lead { font-size: clamp(14px, 3.6vw, 17px); }
}

@media (prefers-reduced-motion: reduce) {
  .boardroom-hero__content,
  .boardroom-hero__media,
  .boardroom-hero__kpi,
  .boardroom-hero::after { animation: none !important; }
  .boardroom-hero__cta::after { display: none; }
}

/* Контраст и читаемость */
.boardroom-hero,
.boardroom-hero * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



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

.ledger-stats {
  position: relative;
  padding: clamp(64px, 12vh, 128px) 0;
  background: radial-gradient(120% 120% at 15% 0%, #0f1a30 0%, #0b1426 55%, #0a1222 100%);
  overflow: hidden;
}
.ledger-stats::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 140%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 34px),
    radial-gradient(50% 50% at 85% 20%, rgba(90,160,255,0.22) 0%, rgba(90,160,255,0) 60%);
  pointer-events: none;
}
.ledger-stats::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 84%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(156,199,255,0.55), rgba(255,255,255,0));
  opacity: 1;
}

.ledger-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
}
@media (min-width: 1024px) {
  .ledger-matrix {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 32px);
  }
}

.ledger-card {
  position: relative;
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(156,199,255,0.45);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  overflow: hidden;
  isolation: isolate;
  color: #e9f0ff;
  opacity: 1;
  transform: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}
.ledger-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 0% 0%, rgba(156,199,255,0.18) 0%, rgba(156,199,255,0) 55%);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}
.ledger-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 40%;
  height: 200%;
  transform: rotate(25deg);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 280ms ease;
}

.ledger-card__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  height: 28px;
}
.ledger-card__icon {
  width: 22px;
  height: 22px;
  fill: #9cc7ff;
  opacity: 1;
  transition: transform 250ms ease, opacity 250ms ease;
}

.ledger-figure {
  margin: 6px 0 6px;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 48px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.ledger-label {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1.9vw, 16px);
  line-height: 1.6;
  color: #c7d6f0;
}

.ledger-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5);
  border-color: rgba(156,199,255,0.65);
  background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.08) 100%);
}
.ledger-card:hover .ledger-card__icon { transform: translateY(-1px); opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .ledger-card::after { display: none; }
}

.ledger-stats,
.ledger-stats * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


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






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

.cxo-service-suite {
  position: relative;
  padding: clamp(72px, 14vh, 144px) 0;
  background: radial-gradient(120% 120% at 18% 0%, #0e1730 0%, #0b1426 55%, #0a1222 100%);
  color: #eaf2ff;
  overflow: hidden;
  isolation: isolate;
}
.cxo-service-suite::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 140%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 32px),
    radial-gradient(60% 60% at 85% 15%, rgba(96,165,250,0.22) 0%, rgba(96,165,250,0) 60%);
  pointer-events: none;
}
.cxo-service-suite::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(156,199,255,0.55), rgba(255,255,255,0));
}

.cxo-suite-head {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 44px);
}
.cxo-suite-title {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5.6vw, 44px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #f4f7ff;
}
.cxo-suite-accent {
  background-image: linear-gradient(92deg, #9cc7ff 0%, #5aa0ff 50%, #c6e0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cxo-suite-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3.6vw, 28px);
}
@media (min-width: 640px) {
  .cxo-suite-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .cxo-suite-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 32px); }
}

.cxo-suite-card {
  position: relative;
  border-radius: 18px;
  padding: clamp(22px, 3.4vw, 28px);
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.10) 100%);
  border: 1px solid rgba(156,199,255,0.5);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  overflow: hidden;
  color: #e7eeff;
  transform: none;
  opacity: 1;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}
.cxo-suite-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(110% 110% at 0% 0%, rgba(156,199,255,0.18) 0%, rgba(156,199,255,0) 60%);
  pointer-events: none;
}
.cxo-suite-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 40%;
  height: 200%;
  transform: rotate(25deg);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 280ms ease;
}

.cxo-suite-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: radial-gradient(120% 120% at 30% 20%, rgba(156,199,255,0.25) 0%, rgba(156,199,255,0.06) 70%);
  color: #9cc7ff;
  margin-bottom: 14px;
  transition: transform 220ms ease, filter 220ms ease;
}
.cxo-suite-icon svg { width: 24px; height: 24px; }

.cxo-suite-cardtitle {
  margin: 0 0 8px 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.cxo-suite-text {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
  color: #c7d6f0;
  max-width: 60ch;
}

.cxo-suite-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5);
  border-color: rgba(156,199,255,0.7);
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.12) 100%);
}
.cxo-suite-card:hover .cxo-suite-icon { transform: translateY(-1px); filter: saturate(1.05); }
.cxo-suite-card:hover::after { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .cxo-suite-card::after { display: none; }
}

.cxo-service-suite,
.cxo-service-suite * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


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

.aurelia-help {
  position: relative;
  padding: clamp(80px, 14vh, 150px) 0;
  background: radial-gradient(120% 120% at 20% 0%, #0d1630 0%, #0b1226 55%, #0a1122 100%);
  color: #eaf2ff;
  overflow: hidden;
  isolation: isolate;
}
.aurelia-help::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 140%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 34px),
    radial-gradient(60% 60% at 85% 15%, rgba(96,165,250,0.22) 0%, rgba(96,165,250,0) 60%);
  pointer-events: none;
}
.aurelia-help::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(156,199,255,0.55), rgba(255,255,255,0));
}
.aurelia-help__head {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 44px);
}
.aurelia-help__title {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5.6vw, 44px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #f4f7ff;
}
.aurelia-help__accent {
  background-image: linear-gradient(92deg, #9cc7ff 0%, #5aa0ff 50%, #c6e0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.aurelia-help__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3.6vw, 30px);
}
@media (min-width: 1024px) {
  .aurelia-help__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 36px);
  }
}
.aurelia-help__card {
  position: relative;
  border-radius: 18px;
  padding: clamp(22px, 3.4vw, 30px);
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.10) 100%);
  border: 1px solid rgba(156,199,255,0.6);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  overflow: hidden;
  color: #e7eeff;
  transform: none;
  opacity: 1;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}
.aurelia-help__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(110% 110% at 0% 0%, rgba(156,199,255,0.18) 0%, rgba(156,199,255,0) 60%);
  pointer-events: none;
}
.aurelia-help__card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 40%;
  height: 200%;
  transform: rotate(25deg);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 280ms ease;
}
.aurelia-help__iconwrap {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: radial-gradient(120% 120% at 30% 20%, rgba(156,199,255,0.28) 0%, rgba(156,199,255,0.08) 70%);
  color: #9cc7ff;
  margin-bottom: 14px;
  transition: transform 220ms ease, filter 220ms ease;
}
.aurelia-help__iconwrap svg { width: 26px; height: 26px; display: block; }
.aurelia-help__subtitle {
  margin: 0 0 10px 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.aurelia-help__text {
  margin: 0 0 16px 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
  color: #c7d6f0;
  max-width: 62ch;
}
.aurelia-help__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 14px;
  color: #0c1424;
  background: linear-gradient(135deg, #b7d5ff 0%, #67a7ff 50%, #2e7cf7 100%);
  box-shadow: 0 10px 24px rgba(46,124,247,0.35), 0 1px 0 rgba(255,255,255,0.6) inset;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.aurelia-help__cta svg { width: 18px; height: 18px; }
.aurelia-help__cta::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -30%;
  width: 30%;
  height: 200%;
  transform: rotate(25deg);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 50%, rgba(255,255,255,0) 100%);
  animation: ah-shine 2.8s ease-in-out infinite;
}
.aurelia-help__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5);
  border-color: rgba(156,199,255,0.72);
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.12) 100%);
}
.aurelia-help__card:hover .aurelia-help__iconwrap { transform: translateY(-1px); filter: saturate(1.05); }
.aurelia-help__card:hover::after { opacity: 1; }
@keyframes ah-shine {
  0% { left: -30%; }
  55% { left: 130%; }
  100% { left: 130%; }
}
.aurelia-help,
.aurelia-help * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.veritas-commit {
  position: relative;
  padding: clamp(80px, 14vh, 150px) 0;
  background: radial-gradient(120% 120% at 18% 0%, #0e1730 0%, #0b1426 55%, #0a1222 100%);
  color: #eaf2ff;
  overflow: hidden;
  isolation: isolate;
}
.veritas-commit::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 140%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 34px),
    radial-gradient(60% 60% at 85% 15%, rgba(96,165,250,0.2) 0%, rgba(96,165,250,0) 60%);
  pointer-events: none;
}
.veritas-commit::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(156,199,255,0.55), rgba(255,255,255,0));
}

.veritas-wrap {
  position: relative;
  border-radius: 20px;
  padding: clamp(20px, 3.2vw, 28px);
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(156,199,255,0.28);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  overflow: hidden;
}
.veritas-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(110% 110% at 0% 0%, rgba(156,199,255,0.16) 0%, rgba(156,199,255,0) 60%);
  pointer-events: none;
}

.veritas-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(22px, 4vw, 32px);
  animation: ver-rise 600ms ease-out both;
}
.veritas-badge {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: radial-gradient(120% 120% at 30% 20%, rgba(156,199,255,0.28) 0%, rgba(156,199,255,0.08) 70%);
  color: #9cc7ff;
  flex: 0 0 44px;
}
.veritas-badge svg { width: 24px; height: 24px; }
.veritas-title {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 5.4vw, 38px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #f4f7ff;
}

.veritas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3.2vw, 28px);
}
@media (min-width: 980px) {
  .veritas-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    gap: clamp(22px, 4vw, 40px);
  }
}

.veritas-statement {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.8;
  color: #c7d6f0;
  transform: translateY(10px);
  opacity: 0;
  animation: ver-reveal 720ms cubic-bezier(0.22,1,0.36,1) 80ms forwards;
}
.veritas-statement p { margin: 0 0 16px 0; }

.veritas-mark {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b7d5ff 0%, #67a7ff 50%, #2e7cf7 100%);
  color: #0c1424;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(46,124,247,0.35), 0 1px 0 rgba(255,255,255,0.6) inset;
}

.veritas-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 560px) {
  .veritas-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.veritas-point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(156,199,255,0.24);
  color: #e9f0ff;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}
.veritas-point svg { width: 18px; height: 18px; color: #9cc7ff; }
.veritas-point:hover {
  transform: translateY(-2px);
  background-color: rgba(156,199,255,0.10);
  border-color: rgba(156,199,255,0.38);
}

.veritas-aside {
  position: relative;
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(156,199,255,0.28);
  box-shadow: 0 14px 36px rgba(0,0,0,0.42);
  transform: translateY(10px);
  opacity: 0;
  animation: ver-reveal 760ms cubic-bezier(0.22,1,0.36,1) 160ms forwards;
}
.veritas-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: #e6eeff;
}
.veritas-quoteicon { width: 20px; height: 20px; color: #9cc7ff; }
.veritas-quote p { margin: 0; font-size: 15px; line-height: 1.7; }

.veritas-sign {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.veritas-line {
  display: inline-block;
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, rgba(156,199,255,0), rgba(156,199,255,0.8), rgba(156,199,255,0));
  animation: ver-glow 2800ms ease-in-out infinite;
}
.veritas-name {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #cfe0ff;
  text-transform: uppercase;
}

@keyframes ver-rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ver-reveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ver-glow {
  0% { box-shadow: 0 0 0 rgba(156,199,255,0); }
  50% { box-shadow: 0 0 14px rgba(156,199,255,0.45); }
  100% { box-shadow: 0 0 0 rgba(156,199,255,0); }
}

@media (max-width: 599.98px) {
  .veritas-title { font-size: clamp(24px, 7vw, 32px); }
  .veritas-quote p { font-size: 14px; }
}


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




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

.zenon-join {
  position: relative;
  padding: clamp(84px, 14vh, 156px) 0;
  background: radial-gradient(120% 120% at 18% 0%, #0e1730 0%, #0b1426 55%, #0a1222 100%);
  color: #eaf2ff;
  overflow: hidden;
  isolation: isolate;
}
.zenon-join::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 140%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 34px),
    radial-gradient(60% 60% at 85% 15%, rgba(96,165,250,0.22) 0%, rgba(96,165,250,0) 60%);
  pointer-events: none;
}
.zenon-join::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(156,199,255,0.55), rgba(255,255,255,0));
}

.zenon-join__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 36px);
  align-items: start;
}
@media (min-width: 992px) {
  .zenon-join__wrap {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(26px, 5vw, 48px);
  }
}

.zenon-join__intro {
  animation: zj-rise 720ms ease-out both;
}
.zenon-join__title {
  margin: 0 0 10px 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5.8vw, 44px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #f4f7ff;
}
.zenon-join__lead {
  margin: 0 0 18px 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(15px, 2.1vw, 17px);
  line-height: 1.8;
  color: #c7d6f0;
  max-width: 62ch;
}

.zenon-join__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
@media (min-width: 560px) {
  .zenon-join__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.zenon-fact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(156,199,255,0.28);
  color: #e9f0ff;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}
.zenon-fact:hover {
  transform: translateY(-2px);
  background-color: rgba(156,199,255,0.10);
  border-color: rgba(156,199,255,0.42);
}
.zenon-fact__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: radial-gradient(120% 120% at 30% 20%, rgba(156,199,255,0.28) 0%, rgba(156,199,255,0.08) 70%);
  color: #9cc7ff;
  flex: 0 0 40px;
}
.zenon-fact__icon svg { width: 20px; height: 20px; }
.zenon-fact__title {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
}
.zenon-fact__text {
  margin: 4px 0 0 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  color: #cfe0ff;
  line-height: 1.6;
}

.zenon-join__note {
  margin-top: 10px;
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(156,199,255,0.28);
  box-shadow: 0 14px 36px rgba(0,0,0,0.42);
  animation: zj-rise 760ms ease-out 80ms both;
}
.zenon-note__title {
  margin: 0 0 8px 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
}
.zenon-note__text {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  color: #c7d6f0;
  line-height: 1.7;
}
.zenon-link {
  color: #9cc7ff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(156,199,255,0.6);
  transition: color 200ms ease, border-color 200ms ease;
}
.zenon-link:hover {
  color: #cfe0ff;
  border-color: rgba(207,224,255,0.9);
}

.zenon-join__formcard {
  position: relative;
  border-radius: 20px;
  padding: clamp(22px, 3.6vw, 30px);
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(156,199,255,0.36);
  box-shadow: 0 20px 48px rgba(0,0,0,0.48);
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  animation: zj-reveal 780ms cubic-bezier(0.22,1,0.36,1) 140ms forwards;
}
.zenon-join__formcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(110% 110% at 0% 0%, rgba(156,199,255,0.18) 0%, rgba(156,199,255,0) 60%);
  pointer-events: none;
}

.zenon-field {
  display: grid;
  gap: 8px;
}
.zenon-label {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #f4f7ff;
}
.zenon-input,
.zenon-textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(156,199,255,0.35);
  background: #0e1629;
  color: #eaf2ff;
  padding: 14px 16px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.zenon-input::placeholder,
.zenon-textarea::placeholder {
  color: #9fb3d6;
}
.zenon-input:focus,
.zenon-textarea:focus {
  outline: none;
  border-color: #9cc7ff;
  box-shadow: 0 0 0 4px rgba(156,199,255,0.18);
  transform: translateY(-1px);
}
.zenon-textarea { resize: vertical; min-height: 140px; }

.zenon-disclaimer {
  margin: 6px 0 0 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #c3d2ec;
  text-align: center;
}

.zenon-submit {
  width: 100%;
  margin-top: 6px;
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 15px;
  color: #0c1424;
  background: linear-gradient(135deg, #b7d5ff 0%, #67a7ff 50%, #2e7cf7 100%);
  box-shadow: 0 12px 28px rgba(46,124,247,0.38), 0 1px 0 rgba(255,255,255,0.6) inset;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.zenon-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(46,124,247,0.48);
  filter: saturate(1.05);
}

@keyframes zj-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes zj-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.zenon-join,
.zenon-join * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


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

.orion-foot {
  position: relative;
  padding: clamp(80px, 14vh, 140px) 0 32px 0;
  background: radial-gradient(120% 120% at 18% 0%, #0e1730 0%, #0b1426 55%, #0a1222 100%);
  color: #eaf2ff;
  overflow: hidden;
  isolation: isolate;
}
.orion-foot::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 140%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 34px),
    radial-gradient(60% 60% at 85% 15%, rgba(96,165,250,0.2) 0%, rgba(96,165,250,0) 60%);
  pointer-events: none;
}
.orion-foot__shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 32px);
  margin-bottom: clamp(24px, 4vw, 36px);
}
@media (min-width: 1024px) {
  .orion-foot__shell {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr) minmax(0, .7fr) minmax(0, .8fr);
    gap: clamp(24px, 3.5vw, 40px);
  }
}

.orion-brand__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.orion-brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: radial-gradient(120% 120% at 30% 20%, rgba(156,199,255,0.28) 0%, rgba(156,199,255,0.08) 70%);
  color: #9cc7ff;
}
.orion-brand__logo svg { width: 22px; height: 22px; }
.orion-brand__name {
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #f4f7ff;
  text-transform: uppercase;
}
.orion-brand__tag {
  margin: 8px 0 0 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  color: #c7d6f0;
  line-height: 1.7;
  max-width: 42ch;
}

.orion-head {
  margin: 0 0 10px 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.orion-text {
  margin: 0 0 12px 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  color: #c7d6f0;
  line-height: 1.8;
}
.orion-text strong { color: #e9f0ff; }
.orion-text a {
  color: #9cc7ff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(156,199,255,0.6);
  transition: color 200ms ease, border-color 200ms ease;
}
.orion-text a:hover { color: #cfe0ff; border-color: rgba(207,224,255,0.9); }

.orion-links {
  display: grid;
  grid-auto-rows: min-content;
  gap: 10px;
}
.orion-link {
  position: relative;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #e7eeff;
  text-decoration: none;
  padding: 2px 0;
  transition: color 220ms ease, transform 220ms ease;
}
.orion-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #9cc7ff, #2e7cf7);
  transition: width 240ms ease;
  border-radius: 2px;
}
.orion-link:hover { color: #cfe0ff; transform: translateY(-1px); }
.orion-link:hover::after { width: 100%; }

.orion-contact__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  text-decoration: none;
  color: #e7eeff;
  margin-bottom: 10px;
}
.orion-contact__ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: rgba(156,199,255,0.12);
  color: #9cc7ff;
}
.orion-contact__ico svg { width: 18px; height: 18px; }
.orion-contact__txt {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #cfe0ff;
}

.orion-foot__bar {
  position: relative;
  margin-top: clamp(8px, 2vw, 14px);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.orion-foot__bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(156,199,255,0.55), rgba(255,255,255,0));
}
@media (max-width: 768px) {
  .orion-foot__bar { flex-direction: column; align-items: flex-start; }
}
.orion-copy {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  color: #c7d6f0;
}
.orion-social {
  display: flex;
  gap: 10px;
}
.orion-social__btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  color: #9cc7ff;
  background: rgba(156,199,255,0.12);
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
}
.orion-social__btn svg { width: 18px; height: 18px; }
.orion-social__btn:hover {
  transform: translateY(-2px);
  background-color: rgba(156,199,255,0.2);
  color: #cfe0ff;
}

.orion-foot,
.orion-foot * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* -------------------------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;
    }
}



.sovereign-gratitude-realm {
    padding: clamp(80px, 13vh, 140px) 0;
    background: linear-gradient(to bottom, #fafafa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.sovereign-gratitude-realm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
    opacity: 0.5;
    animation: subtleGlow 5s infinite alternate ease-in-out;
}

.exalted-gratitude-proclamation {
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 40px);
    opacity: 0;
    transform: scale(0.9);
    animation: proclamationBloom 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.exalted-gratitude-proclamation h1 {
    font-size: clamp(34px, 6vw, 48px);
    font-weight: 900;
    color: #0f172a;
    position: relative;
    transition: color 0.6s ease;
}

.exalted-gratitude-proclamation h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(to right, #1e40af, #3b82f6);
    transition: width 0.6s ease;
}

.exalted-gratitude-proclamation:hover h1::after {
    width: 120px;
}

.exalted-gratitude-proclamation:hover h1 {
    color: #1d4ed8;
}

.regal-gratitude-narrative {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: narrativeAscend 1.4s ease-out 0.3s forwards;
}

.regal-gratitude-narrative p {
    font-size: clamp(16px, 2.1vw, 18px);
    color: #374151;
    line-height: 1.8;
    margin-bottom: 25px;
    transition: color 0.6s ease;
}

.regal-gratitude-narrative p:hover {
    color: #1f2937;
}

.noble-guidance-chapter {
    margin-bottom: clamp(30px, 5vw, 40px);
}

.noble-guidance-chapter h2 {
    font-size: clamp(24px, 3.5vw, 28px);
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    position: relative;
    transition: color 0.6s ease;
}

.noble-guidance-chapter h2::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: #2563eb;
    transition: width 0.6s ease;
}

.noble-guidance-chapter:hover h2 {
    color: #1e40af;
}

.noble-guidance-chapter:hover h2::before {
    width: 80px;
}

.aristocratic-guidance-roster {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aristocratic-guidance-roster li {
    font-size: clamp(15px, 2vw, 17px);
    color: #475569;
    line-height: 1.7;
    position: relative;
    padding-left: 30px;
    opacity: 0;
    transform: translateX(-20px);
    animation: listItemSlide 0.9s ease-out forwards;
}

.aristocratic-guidance-roster li:nth-child(1) { animation-delay: 0.5s; }
.aristocratic-guidance-roster li:nth-child(2) { animation-delay: 0.6s; }
.aristocratic-guidance-roster li:nth-child(3) { animation-delay: 0.7s; }

.aristocratic-guidance-roster li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1e40af;
    font-size: 24px;
    transition: color 0.6s ease, transform 0.6s ease;
}

.aristocratic-guidance-roster li:hover {
    color: #334155;
}

.aristocratic-guidance-roster li:hover::before {
    color: #2563eb;
    transform: scale(1.2);
}

.narrative-link {
    color: #1e40af;
    text-decoration: none;
    position: relative;
    transition: color 0.5s ease;
}

.narrative-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.5s ease;
}

.narrative-link:hover {
    color: #2563eb;
}

.narrative-link:hover::after {
    width: 100%;
}

.opulent-exploration-portal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 2vw, 16px) clamp(30px, 4vw, 35px);
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.2);
    transition: transform 0.6s ease, box-shadow 0.6s ease, background 0.6s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.opulent-exploration-portal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(29, 78, 216, 0.3);
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

.opulent-exploration-portal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s ease, height 0.7s ease;
    opacity: 0;
}

.opulent-exploration-portal:hover::before {
    width: 300%;
    height: 300%;
    opacity: 1;
}

@keyframes proclamationBloom {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes listItemSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes subtleGlow {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 0.2;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sovereign-gratitude-realm {
        padding: clamp(60px, 11vh, 90px) 0;
    }
    .exalted-gratitude-proclamation h1 {
        font-size: clamp(28px, 7vw, 40px);
    }
    .regal-gratitude-narrative p {
        font-size: clamp(14px, 2.5vw, 16px);
    }
    .noble-guidance-chapter h2 {
        font-size: clamp(22px, 4vw, 26px);
    }
    .aristocratic-guidance-roster li {
        font-size: clamp(14px, 2.2vw, 16px);
    }
    .opulent-exploration-portal {
        font-size: 15px;
        padding: 12px 25px;
    }
}

.celestial-navigation-beacon {
    z-index: 999 !important;
}