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

.corporate-header {
  background: linear-gradient(to bottom, #001f3f, #003366);
  padding: clamp(10px, 2.5vw, 15px) 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.4s ease-out;
}

.corporate-header:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.executive-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 40px);
  animation: smoothEntrance 1s ease-out forwards;
}

.luxury-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.luxury-logo-link:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.emblem-image {
  height: clamp(40px, 5vw, 50px);
  width: auto;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.4s ease;
}

.luxury-logo-link:hover .emblem-image {
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.company-name {
  color: #f0f4f8;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 900;
  margin: 0;
  letter-spacing: 2px;
  text-transform: capitalize;
  transition: text-shadow 0.4s ease;
}

.luxury-logo-link:hover .company-name {
  text-shadow: 0 0 10px #ffd700;
}

.menu-toggle {
  display: none;
}

@media screen and (max-width: 1200px) {
  .menu-toggle {
    display: flex;
    align-items: center;
  }
}

.primary-nav .menu-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1200px) {
  .primary-nav .menu-list {
    display: flex;
    align-items: center;
    gap: clamp(25px, 3.5vw, 35px);
  }
}

.menu-item {
  position: relative;
}

.nav-link {
  color: #d8e1eb;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 18px);
  padding: 6px 10px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ffd700;
}

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

.burger {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.burger::before,
.burger::after,
.burger span {
  width: 100%;
  height: 4px;
  background: #d8e1eb;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.burger::before {
  content: "";
}

.burger::after {
  content: "";
}

.burger.is-open::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.is-open::after {
  transform: rotate(-45deg) translate(7px, -8px);
}

.burger.is-open span {
  opacity: 0;
  transform: translateX(20px);
}

@media screen and (min-width: 1200px) {
  .burger {
    display: none;
  }
}

.elite-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: linear-gradient(to right, #003366, #001f3f);
  box-shadow: -10px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  z-index: 99;
}

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

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: clamp(50px, 10vw, 80px) 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mobile-menu-item {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.elite-mobile-menu.is-open .mobile-menu-item:nth-child(1) {
  transition-delay: 0.1s;
}

.elite-mobile-menu.is-open .mobile-menu-item:nth-child(2) {
  transition-delay: 0.2s;
}

.elite-mobile-menu.is-open .mobile-menu-item:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-nav-connection {
  color: #d8e1eb;
  text-decoration: none;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 10px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
  display: block;
}

.mobile-nav-connection:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(10px);
}

@keyframes smoothEntrance {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .executive-nav-container {
    gap: 10px;
  }
  .emblem-image {
    height: 40px;
  }
  .company-name {
    font-size: 18px;
  }
  .mobile-nav-connection {
    font-size: 20px;
  }
  .elite-mobile-menu {
    width: 250px;
  }
}

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

/* ===== Hero — Executive / Premium Look ===== */
.hx-prologue {
  --hx-bg: #0b1220;
  --hx-surface: #101827;
  --hx-ink: #ebedf2;
  --hx-muted: #aab4c5;
  --hx-accent: #c7a96b;        /* тёплое золото */
  --hx-accent-2: #8ec5ff;      /* холодный штрих для контраста */
  --hx-radius: 18px;
  --hx-padY: clamp(72px, 8vw, 120px);
  position: relative;
  background: radial-gradient(1200px 600px at 10% -10%, #18243b 0%, transparent 60%) ,
              linear-gradient(180deg, #0a1322 0%, #0b1220 30%, #0b1220 100%);
  color: var(--hx-ink);
  padding: var(--hx-padY) 0;
  overflow: hidden;
  isolation: isolate;
}

/* Decorative background */
.hx-bg {
  pointer-events: none;
}
.hx-bg__grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(transparent 95%, rgba(255,255,255,.05) 95%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,.05) 95%);
  background-size: 42px 42px, 42px 42px;
  mask-image: radial-gradient(1200px 600px at 0% 0%, rgba(0,0,0,.9), rgba(0,0,0,0.1) 70%, transparent 100%);
  opacity: .35;
  animation: hx-pan 28s linear infinite;
  z-index: 0;
}
.hx-bg__orb {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .18;
  z-index: 0;
  transform: translateZ(0);
}
.hx-bg__orb--a { background: radial-gradient(circle at 30% 30%, #a7d0ff 0%, transparent 60%); top: -120px; right: -180px; animation: hx-float 18s ease-in-out infinite; }
.hx-bg__orb--b { background: radial-gradient(circle at 70% 70%, #d7bf84 0%, transparent 60%); bottom: -180px; left: -140px; animation: hx-float 22s ease-in-out infinite reverse; }

/* Layout */
.hx-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (min-width: 992px) {
  .hx-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(40px, 6vw, 80px);
  }
}
.hx-col--text { order: 2; }
.hx-col--media { order: 1; }
@media (min-width: 992px) {
  .hx-col--text { order: 1; }
  .hx-col--media { order: 2; }
}

/* Eyebrow label */
.hx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(199,169,107,.08);
  color: var(--hx-accent);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid rgba(199,169,107,.25);
}
.hx-eyebrow .hx-ico { display: inline-block; }

/* Headline */
.hx-display {
  margin: 14px 0 14px;
  font-weight: 700;
  line-height: 1.15;
  font-size: clamp(28px, 4.6vw, 48px);
  letter-spacing: -.01em;
}
.hx-brand-accent {
  background: linear-gradient(90deg, var(--hx-accent) 0%, #e3d5aa 50%, var(--hx-accent) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/* Lead text */
.hx-lead {
  margin: 10px 0 24px;
  color: var(--hx-muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  max-width: 60ch;
}

/* Actions */
.hx-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hx-cta {
  --glow: rgba(199,169,107,.5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  color: #0b1220;
  background:
    linear-gradient(180deg, #e8d8a8, var(--hx-accent)) padding-box,
    linear-gradient(90deg, #fff, rgba(255,255,255,0)) border-box;
  border: 1px solid transparent;
  border-radius: 12px;
  box-shadow:
    0 10px 18px -6px var(--glow),
    inset 0 -1px 0 rgba(0,0,0,.15);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}
.hx-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.0) 30%, rgba(255,255,255,.35) 50%, rgba(255,255,255,.0) 70%);
  transform: translateX(-120%);
  transition: transform .65s ease;
}
.hx-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 28px -10px var(--glow), inset 0 -1px 0 rgba(0,0,0,.15); }
.hx-cta:hover::after { transform: translateX(120%); }
.hx-cta:active { transform: translateY(0); }
.hx-cta__ico { flex: 0 0 auto; }

.hx-link-muted {
  color: var(--hx-ink);
  opacity: .7;
  text-decoration: none;
  border-bottom: 1px dashed rgba(235,237,242,.35);
  padding-bottom: 2px;
  transition: opacity .2s ease, border-color .2s ease;
}
.hx-link-muted:hover { opacity: 1; border-color: currentColor; }

/* Trust bullets */
.hx-trust {
  display: flex;
  gap: 18px 28px;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--hx-muted);
  font-size: clamp(13px, 1.4vw, 15px);
}
.hx-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

/* Media block */
.hx-visual {
  position: relative;
  border-radius: var(--hx-radius);
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)) padding-box,
    conic-gradient(from 180deg, rgba(200,168,92,.9), rgba(200,168,92,0) 25%, rgba(142,197,255,.7) 50%, rgba(200,168,92,0) 75%, rgba(200,168,92,.9)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 24px 60px -24px rgba(0,0,0,.6),
    0 4px 24px -6px rgba(142,197,255,.25);
  overflow: hidden;
  transform: translateZ(0);
}
.hx-visual__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--hx-radius) - 6px);
  transform: scale(1.005);
  transition: transform .45s ease;
}
.hx-visual:hover .hx-visual__img { transform: scale(1.02); }

.hx-visual__note {
  position: absolute;
  left: 16px;
  bottom: 12px;
  font-size: 12px;
  color: #d7deea;
  background: rgba(16,24,39,.65);
  border: 1px solid rgba(255,255,255,.08);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}

/* Animations */
@keyframes hx-pan {
  0%   { transform: translateY(0); }
  100% { transform: translateY(42px); }
}
@keyframes hx-float {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50%     { transform: translate3d(0,-10px,0) scale(1.02); }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hx-bg__grid,
  .hx-bg__orb,
  .hx-cta::after { animation: none !important; transition: none !important; }
}

/* Responsiveness tweaks */
@media (max-width: 768px) {
  .hx-display { font-size: clamp(24px, 7vw, 34px); }
  .hx-lead { font-size: clamp(14px, 2.8vw, 16px); }
  .hx-visual__note { font-size: 11px; }
}

/* Basic focus styles */
.hx-cta:focus-visible,
.hx-link-muted:focus-visible {
  outline: 2px solid var(--hx-accent-2);
  outline-offset: 2px;
  border-radius: 12px;
}


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

/* ===== Premium Stats Section (business look) ===== */
.lx-ledger-zone {
  position: relative;
  padding: clamp(64px, 9vw, 128px) 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, #1a2740 0%, rgba(26,39,64,0) 60%),
    linear-gradient(180deg, #0b1220 0%, #0d1526 100%);
  color: #e8ecf4;
  overflow: hidden;
  isolation: isolate;
}

/* Decorative grid */
.lx-ledger-sky {
  position: absolute;
  inset: -1px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px;
  opacity: 0.35;
  animation: lx-scroll 28s linear infinite;
  z-index: 0;
}

/* Orbs */
.lx-ledger-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.22;
  z-index: 0;
  transform: translateZ(0);
}
.lx-ledger-orb--left {
  left: -160px;
  bottom: -180px;
  background: radial-gradient(circle at 60% 60%, #dcc58e 0%, rgba(220,197,142,0) 60%);
  animation: lx-float 22s ease-in-out infinite;
}
.lx-ledger-orb--right {
  right: -180px;
  top: -140px;
  background: radial-gradient(circle at 40% 40%, #8ec5ff 0%, rgba(142,197,255,0) 60%);
  animation: lx-float 20s ease-in-out infinite reverse;
}

/* Heading */
.lx-headline-wrap {
  text-align: center;
  margin-bottom: clamp(28px, 4.8vw, 56px);
}
.lx-kicker {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(231, 213, 164, 0.35);
  border-radius: 999px;
  color: #cdb273;
  background: rgba(205,178,115,0.08);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lx-title {
  margin: 14px 0 8px;
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.lx-sub {
  margin: 0 auto;
  color: #aeb8c8;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.7;
  max-width: 72ch;
}

/* Grid */
.lx-metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 28vw, 300px), 1fr));
  gap: clamp(20px, 3.6vw, 32px);
  align-items: center;
}

/* Card */
.lx-metric-card {
  position: relative;
  background:#000;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: clamp(22px, 3.6vw, 30px) clamp(18px, 3vw, 26px);
  text-align: center;
  box-shadow:
    0 26px 60px -26px rgba(0,0,0,0.55),
    0 4px 22px -8px rgba(142,197,255,0.22);
  overflow: hidden;
  transform: translate3d(0,14px,0) scale(0.98);
  opacity: 0;
  animation: lx-reveal 0.9s ease-out forwards;
}
.lx-metric-card:nth-child(1){ animation-delay: .10s; }
.lx-metric-card:nth-child(2){ animation-delay: .22s; }
.lx-metric-card:nth-child(3){ animation-delay: .34s; }
.lx-metric-card:nth-child(4){ animation-delay: .46s; }

/* Sheen on hover */
.lx-metric-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0) 65%);
  transform: translateX(-120%);
  transition: transform .7s ease;
  pointer-events: none;
}
.lx-metric-card:hover::after { transform: translateX(120%); }

/* Icon badge */
.lx-ico {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #0f1524;
  background: linear-gradient(180deg, #e7d5a4, #c5a56b);
  box-shadow:
    inset 0 -1px 0 rgba(0,0,0,0.18),
    0 8px 18px -6px rgba(199,169,107,0.5);
}

/* Numbers */
.lx-figure {
  font-size: clamp(36px, 6vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  margin: 6px 0 8px;
  background: linear-gradient(90deg, #efdca8, #b58e4c);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,0.08);
  font-variant-numeric: tabular-nums lining-nums;
}

/* Labels */
.lx-caption {
  margin: 0;
  color: #c3ccda;
  font-size: clamp(13px, 1.5vw, 15px);
  letter-spacing: .02em;
  line-height: 1.6;
}

/* Hover elevation */
.lx-metric-card:hover {
  transform: translate3d(0,0,0) scale(1.015);
  box-shadow:
    0 32px 68px -28px rgba(0,0,0,0.6),
    0 6px 26px -8px rgba(231,213,164,0.28);
}

/* Animations */
@keyframes lx-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(44px); }
}
@keyframes lx-float {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0,-10px,0) scale(1.02); }
}
@keyframes lx-reveal {
  to { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  .lx-ledger-sky,
  .lx-ledger-orb,
  .lx-metric-card::after { animation: none !important; transition: none !important; }
  .lx-metric-card { transform: none; opacity: 1; }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .lx-title { font-size: clamp(22px, 6.2vw, 30px); }
  .lx-sub   { font-size: clamp(13px, 2.8vw, 16px); }
  .lx-figure { font-size: clamp(30px, 9vw, 44px); }
}

/* Keyboard focus */
.lx-metric-card:focus-within {
  outline: 2px solid #8ec5ff;
  outline-offset: 3px;
  border-radius: 20px;
}


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

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

/* ===== Premium About Section (business look) ===== */
.ax-briefing-block {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, #1b2742 0%, rgba(27,39,66,0) 60%),
    linear-gradient(180deg, #0b1220 0%, #0e1627 100%);
  color: #e8edf6;
  overflow: hidden;
  isolation: isolate;
}

/* Background decoration */
.ax-backdrop { position: absolute; z-index: 0; pointer-events: none; }
.ax-backdrop--grid {
  inset: -1px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px, 46px 46px;
  opacity: 0.35;
  animation: ax-grid-pan 28s linear infinite;
}
.ax-backdrop--flare-a {
  width: 560px; height: 560px; left: -180px; bottom: -200px; border-radius: 50%;
  background: radial-gradient(circle at 60% 60%, #d9c48e 0%, rgba(217,196,142,0) 62%);
  filter: blur(38px); opacity: 0.22; animation: ax-float 22s ease-in-out infinite;
}
.ax-backdrop--flare-b {
  width: 520px; height: 520px; right: -160px; top: -160px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #8ec5ff 0%, rgba(142,197,255,0) 60%);
  filter: blur(40px); opacity: 0.20; animation: ax-float 20s ease-in-out infinite reverse;
}

/* Layout */
.ax-layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4.6vw, 48px);
  align-items: start;
}
@media (min-width: 992px) {
  .ax-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(40px, 6vw, 84px);
  }
}

/* Aside card with conic border */
.ax-aside-card {
  position: relative;
  border-radius: 18px;
  padding: 22px;
  background: #000;
  border: 1px solid transparent;
  box-shadow:
    0 24px 60px -24px rgba(0,0,0,0.58),
    0 6px 24px -8px rgba(142,197,255,0.25);
  overflow: hidden;
  transform: translate3d(0,16px,0) scale(0.98);
  opacity: 0;
  animation: ax-reveal 0.9s ease-out forwards;
}
.ax-aside-top { margin-bottom: 14px; }
.ax-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: #0f1524; background: linear-gradient(180deg, #e7d5a4, #c5a56b);
  padding: 6px 10px; border-radius: 999px;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.18), 0 8px 18px -6px rgba(199,169,107,0.5);
}
.ax-aside-title {
  margin: 12px 0 6px; font-size: clamp(18px, 2.2vw, 22px); font-weight: 700; line-height: 1.25;
}
.ax-aside-text {
  margin: 0; color: #c5cedc; font-size: clamp(13px, 1.5vw, 15px); line-height: 1.7;
}
.ax-aside-meta { margin-top: 14px; display: grid; gap: 8px; }
.ax-meta-row {
  display: inline-flex; align-items: center; gap: 8px;
  color: #d4dbea; font-size: 13px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 8px 10px;
}

/* Head & title */
.ax-head { margin-bottom: 10px; }
.ax-kicker {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(231,213,164,0.35); background: rgba(205,178,115,0.08);
  color: #cdb273; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}
.ax-title {
  margin: 12px 0 0; font-size: clamp(28px, 4.2vw, 42px); font-weight: 800; line-height: 1.18; letter-spacing: -0.01em;
  text-wrap: balance;
}
.ax-mark {
  background: linear-gradient(90deg, #efdca8, #b58e4c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
}
.ax-mark::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: linear-gradient(90deg, #efdca8, #8ec5ff);
  transition: width .5s ease;
}
.ax-title:hover .ax-mark::after { width: 100%; }

/* Body text */
.ax-lead {
  margin: 14px 0 18px; color: #aeb8c8; font-size: clamp(15px, 1.6vw, 18px); line-height: 1.8; max-width: 72ch;
}
.ax-strong { font-weight: 700; color: #f1e4b0; }

/* Bullet list */
.ax-points { list-style: none; margin: 0; padding: 0; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(12px, 2.8vw, 18px);
}
.ax-point {
  position: relative; display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: #c9d1df; font-size: clamp(13px, 1.5vw, 15px); line-height: 1.5;
  overflow: hidden;
}
.ax-point::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 65%);
  transform: translateX(-120%); transition: transform .7s ease; pointer-events: none;
}
.ax-point:hover::after { transform: translateX(120%); }
.ax-point-ico {
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px;
  color: #0f1524; background: linear-gradient(180deg, #e7d5a4, #c5a56b);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.18), 0 8px 18px -6px rgba(199,169,107,0.5);
}

/* Reveal animation for main column */
.ax-main { opacity: 0; transform: translate3d(0,18px,0) scale(0.995); animation: ax-reveal 0.9s ease-out 0.12s forwards; }

/* Animations */
@keyframes ax-grid-pan { 0% { transform: translateY(0); } 100% { transform: translateY(46px); } }
@keyframes ax-float { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(0,-10px,0) scale(1.02); } }
@keyframes ax-reveal { to { opacity: 1; transform: translate3d(0,0,0) scale(1); } }

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  .ax-backdrop--grid, .ax-backdrop--flare-a, .ax-backdrop--flare-b,
  .ax-point::after { animation: none !important; transition: none !important; }
  .ax-aside-card, .ax-main { transform: none; opacity: 1; }
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .ax-layout { grid-template-columns: 1fr; }
  .ax-aside-card { order: 2; }
  .ax-main { order: 1; }
}
@media (max-width: 768px) {
  .ax-title { font-size: clamp(24px, 6.4vw, 32px); }
  .ax-lead  { font-size: clamp(14px, 2.8vw, 16px); }
}


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

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

/* ===== Premium Services Section (business look) ===== */
.zt-portfolio-suite {
  position: relative;
  padding: clamp(72px, 9vw, 130px) 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, #1a2740 0%, rgba(26,39,64,0) 60%),
    linear-gradient(180deg, #0b1220 0%, #0e1627 100%);
  color: #e8ecf4;
  overflow: hidden;
  isolation: isolate;
}

/* Background decorations */
.zt-sky { position: absolute; pointer-events: none; z-index: 0; }
.zt-sky--mesh {
  inset: -1px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px;
  opacity: 0.35;
  animation: zt-mesh-pan 28s linear infinite;
}
.zt-sky--glow-a {
  width: 520px; height: 520px; left: -170px; bottom: -190px; border-radius: 50%;
  background: radial-gradient(circle at 60% 60%, #d9c48e 0%, rgba(217,196,142,0) 62%);
  filter: blur(38px); opacity: 0.22; animation: zt-float 22s ease-in-out infinite;
}
.zt-sky--glow-b {
  width: 520px; height: 520px; right: -180px; top: -160px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #8ec5ff 0%, rgba(142,197,255,0) 60%);
  filter: blur(40px); opacity: 0.20; animation: zt-float 20s ease-in-out infinite reverse;
}

/* Header */
.zt-head { text-align: center; margin-bottom: clamp(28px, 4.8vw, 56px); position: relative; z-index: 1; }
.zt-kicker {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(231,213,164,0.35);
  border-radius: 999px;
  background: rgba(205,178,115,0.08);
  color: #cdb273;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.zt-title {
  margin: 14px 0 8px;
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.zt-em {
  background: linear-gradient(90deg, #efdca8, #b58e4c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
}
.zt-em::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: linear-gradient(90deg, #efdca8, #8ec5ff);
  transition: width .5s ease;
}
.zt-title:hover .zt-em::after { width: 100%; }
.zt-sub {
  margin: 0 auto;
  color: #aeb8c8;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.7;
  max-width: 72ch;
}

/* Cards grid */
.zt-cards {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(240px, 30vw, 320px), 1fr));
  gap: clamp(18px, 3.4vw, 28px);
  align-items: stretch;
}

/* Card */
.zt-card {
  position: relative;
  border-radius: 18px;
  padding: clamp(22px, 3.6vw, 30px) clamp(18px, 3vw, 26px);
  text-align: left;
  background:
    #000;
  box-shadow:
    0 26px 60px -26px rgba(0,0,0,0.55),
    0 4px 22px -8px rgba(142,197,255,0.22);
  overflow: hidden;
  transform: translate3d(0,16px,0) scale(0.985);
  opacity: 0;
  animation: zt-reveal .9s ease-out forwards;
}
.zt-card:nth-child(1){ animation-delay: .10s; }
.zt-card:nth-child(2){ animation-delay: .22s; }
.zt-card:nth-child(3){ animation-delay: .34s; }

/* Icon badge */
.zt-card__badge {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: #0f1524;
  background: linear-gradient(180deg, #e7d5a4, #c5a56b);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.18), 0 8px 18px -6px rgba(199,169,107,0.5);
  margin-bottom: 12px;
  transition: transform .35s ease;
}

/* Title & text */
.zt-card__title {
  margin: 4px 0 6px;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .01em;
  color: #e8ecf4;
}
.zt-card__text {
  margin: 0;
  color: #c3ccda;
  font-size: clamp(13px, 1.6vw, 16px);
  line-height: 1.7;
  max-width: 48ch;
}

/* Sheen effect */
.zt-card__sheen {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0) 65%);
  transform: translateX(-120%);
  transition: transform .7s ease;
  pointer-events: none;
}

/* Hover/Focus elevation */
.zt-card:hover, .zt-card:focus-within {
  transform: translate3d(0,0,0) scale(1.01);
  box-shadow:
    0 32px 68px -28px rgba(0,0,0,0.6),
    0 6px 26px -8px rgba(231,213,164,0.28);
}
.zt-card:hover .zt-card__badge { transform: translateY(-2px) scale(1.04); }
.zt-card:hover .zt-card__sheen { transform: translateX(120%); }

/* Animations */
@keyframes zt-mesh-pan { 0% { transform: translateY(0); } 100% { transform: translateY(44px); } }
@keyframes zt-float { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(0,-10px,0) scale(1.02); } }
@keyframes zt-reveal { to { opacity: 1; transform: translate3d(0,0,0) scale(1); } }

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  .zt-sky--mesh, .zt-sky--glow-a, .zt-sky--glow-b, .zt-card__sheen { animation: none !important; transition: none !important; }
  .zt-card { transform: none; opacity: 1; }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .zt-title { font-size: clamp(24px, 6.2vw, 32px); }
  .zt-sub   { font-size: clamp(13px, 2.8vw, 16px); }
  .zt-cards { grid-template-columns: 1fr; }
}


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

/* ===== Premium Offer Section (business look) ===== */
.qx-offer-suite {
  position: relative;
  padding: clamp(72px, 9vw, 130px) 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, #1a2740 0%, rgba(26,39,64,0) 60%),
    linear-gradient(180deg, #0b1220 0%, #0e1627 100%);
  color: #e8ecf4;
  overflow: hidden;
  isolation: isolate;
}

/* Background decor */
.qx-bg { position: absolute; pointer-events: none; z-index: 0; }
.qx-bg--mesh {
  inset: -1px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px, 46px 46px;
  opacity: 0.35;
  animation: qx-mesh-pan 28s linear infinite;
}
.qx-bg--orb-a {
  width: 560px; height: 560px; left: -190px; bottom: -210px; border-radius: 50%;
  background: radial-gradient(circle at 60% 60%, #d9c48e 0%, rgba(217,196,142,0) 62%);
  filter: blur(40px); opacity: 0.22; animation: qx-float 22s ease-in-out infinite;
}
.qx-bg--orb-b {
  width: 520px; height: 520px; right: -180px; top: -170px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #8ec5ff 0%, rgba(142,197,255,0) 60%);
  filter: blur(40px); opacity: 0.20; animation: qx-float 20s ease-in-out infinite reverse;
}

/* Header */
.qx-head { position: relative; z-index: 1; text-align: center; margin-bottom: clamp(28px, 4.8vw, 56px); }
.qx-kicker {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(231,213,164,0.35); background: rgba(205,178,115,0.08);
  color: #cdb273; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}
.qx-title {
  margin: 14px 0 8px; font-size: clamp(26px, 4.2vw, 40px); font-weight: 800; line-height: 1.18; letter-spacing: -0.01em;
}
.qx-mark {
  background: linear-gradient(90deg, #efdca8, #b58e4c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
}
.qx-mark::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: linear-gradient(90deg, #efdca8, #8ec5ff);
  transition: width .5s ease;
}
.qx-title:hover .qx-mark::after { width: 100%; }
.qx-sub {
  margin: 0 auto; max-width: 72ch; color: #aeb8c8; font-size: clamp(14px, 1.6vw, 18px); line-height: 1.7;
}

/* Grid */
.qx-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(clamp(260px, 34vw, 520px), 1fr));
  gap: clamp(18px, 3.4vw, 28px);
  align-items: stretch;
}
@media (max-width: 992px) { .qx-grid { grid-template-columns: 1fr; } }

/* Card */
.qx-card {
  position: relative;
  border-radius: 18px;
  padding: clamp(22px, 3.6vw, 30px) clamp(18px, 3vw, 26px);
  background:
    #000;
  box-shadow:
    0 26px 60px -26px rgba(0,0,0,0.55),
    0 4px 22px -8px rgba(142,197,255,0.22);
  overflow: hidden;
  transform: translate3d(0,16px,0) scale(0.985);
  opacity: 0;
  animation: qx-reveal .9s ease-out forwards;
}
.qx-card:nth-child(1){ animation-delay: .10s; }
.qx-card:nth-child(2){ animation-delay: .22s; }
.qx-card:nth-child(3){ animation-delay: .34s; }
.qx-card:nth-child(4){ animation-delay: .46s; }

/* Icon badge */
.qx-card__icon {
  width: 42px; height: 42px; margin-bottom: 12px;
  display: grid; place-items: center; border-radius: 12px;
  color: #0f1524; background: linear-gradient(180deg, #e7d5a4, #c5a56b);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.18), 0 8px 18px -6px rgba(199,169,107,0.5);
  transition: transform .35s ease;
}

/* Title & text */
.qx-card__title {
  margin: 4px 0 6px; font-size: clamp(18px, 2.4vw, 22px); font-weight: 700; line-height: 1.25; letter-spacing: .01em; color: #e8ecf4;
}
.qx-card__text {
  margin: 0 0 14px; color: #c3ccda; font-size: clamp(13px, 1.6vw, 16px); line-height: 1.7; max-width: 60ch;
}

/* CTA */
.qx-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; font-weight: 600; letter-spacing: .02em; text-decoration: none;
  color: #0b1220;
  background:
    linear-gradient(180deg, #e8d8a8, #c7a96b) padding-box,
    linear-gradient(90deg, #ffffff, rgba(255,255,255,0)) border-box;
  border: 1px solid transparent;
  border-radius: 12px;
  box-shadow: 0 10px 18px -6px rgba(199,169,107,0.5), inset 0 -1px 0 rgba(0,0,0,0.15);
  position: relative; overflow: hidden; transform: translateZ(0);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}
.qx-cta::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 70%);
  transform: translateX(-120%); transition: transform .65s ease;
}
.qx-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 28px -10px rgba(199,169,107,0.55), inset 0 -1px 0 rgba(0,0,0,0.15); }
.qx-cta:hover::after { transform: translateX(120%); }
.qx-cta__ico { flex: 0 0 auto; }

/* Sheen over card */
.qx-sheen {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0) 65%);
  transform: translateX(-120%);
  transition: transform .7s ease;
  pointer-events: none;
}

/* Hover elevation */
.qx-card:hover, .qx-card:focus-within {
  transform: translate3d(0,0,0) scale(1.01);
  box-shadow:
    0 32px 68px -28px rgba(0,0,0,0.6),
    0 6px 26px -8px rgba(231,213,164,0.28);
}
.qx-card:hover .qx-card__icon { transform: translateY(-2px) scale(1.04); }
.qx-card:hover .qx-sheen { transform: translateX(120%); }

/* Animations */
@keyframes qx-mesh-pan { 0% { transform: translateY(0); } 100% { transform: translateY(46px); } }
@keyframes qx-float { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(0,-10px,0) scale(1.02); } }
@keyframes qx-reveal { to { opacity: 1; transform: translate3d(0,0,0) scale(1); } }

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  .qx-bg--mesh, .qx-bg--orb-a, .qx-bg--orb-b, .qx-sheen, .qx-cta::after { animation: none !important; transition: none !important; }
  .qx-card { transform: none; opacity: 1; }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .qx-title { font-size: clamp(24px, 6.2vw, 32px); }
  .qx-sub   { font-size: clamp(13px, 2.8vw, 16px); }
  .qx-grid  { grid-template-columns: 1fr; }
}

/* Keyboard focus */
.qx-cta:focus-visible,
.qx-card:focus-within {
  outline: 2px solid #8ec5ff;
  outline-offset: 3px;
  border-radius: 14px;
}




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

/* ===== Premium Contact / Join Section ===== */
.mnx-engage-hub {
  position: relative;
  padding: clamp(72px, 9vw, 132px) 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, #1b2742 0%, rgba(27,39,66,0) 60%),
    linear-gradient(180deg, #0b1220 0%, #0e1627 100%);
  color: #e8edf6;
  overflow: hidden;
  isolation: isolate;
}

/* Decorative background */
.mnx-bg { position: absolute; pointer-events: none; z-index: 0; }
.mnx-bg--mesh {
  inset: -1px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px, 46px 46px;
  opacity: 0.35;
  animation: mnx-mesh-pan 28s linear infinite;
}
.mnx-bg--orb-a {
  width: 560px; height: 560px; left: -190px; bottom: -210px; border-radius: 50%;
  background: radial-gradient(circle at 60% 60%, #d9c48e 0%, rgba(217,196,142,0) 62%);
  filter: blur(40px); opacity: 0.22; animation: mnx-float 22s ease-in-out infinite;
}
.mnx-bg--orb-b {
  width: 520px; height: 520px; right: -180px; top: -170px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #8ec5ff 0%, rgba(142,197,255,0) 60%);
  filter: blur(40px); opacity: 0.20; animation: mnx-float 20s ease-in-out infinite reverse;
}

/* Layout */
.mnx-layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4.8vw, 56px);
  align-items: start;
}
@media (min-width: 992px) {
  .mnx-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(40px, 6vw, 84px);
  }
}

/* Head block */
.mnx-head { margin-bottom: 8px; }
.mnx-kicker {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(231,213,164,0.35);
  border-radius: 999px;
  background: rgba(205,178,115,0.08);
  color: #cdb273;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mnx-title {
  margin: 12px 0 8px;
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-wrap: balance;
  opacity: 0;
  transform: translate3d(0,-12px,0) scale(0.99);
  animation: mnx-reveal .9s ease-out forwards;
}
.mnx-lead {
  margin: 0;
  color: #aeb8c8;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.8;
  max-width: 70ch;
  opacity: 0;
  transform: translate3d(0,10px,0);
  animation: mnx-reveal .9s ease-out .12s forwards;
}
.mnx-mark {
  background: linear-gradient(90deg, #efdca8, #b58e4c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Info column */
.mnx-brief { opacity: 1; }
.mnx-contacts {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: grid; gap: 14px;
}
.mnx-contacts__item {
  position: relative;
  display: grid; grid-template-columns: 36px 1fr; gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: #c9d1df;
  transform: translate3d(0,12px,0);
  opacity: 0;
  animation: mnx-reveal .8s ease-out forwards;
}
.mnx-contacts__item:nth-child(1){ animation-delay: .18s; }
.mnx-contacts__item:nth-child(2){ animation-delay: .28s; }
.mnx-contacts__item:nth-child(3){ animation-delay: .38s; }
.mnx-ico {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 10px;
  color: #0f1524;
  background: linear-gradient(180deg, #e7d5a4, #c5a56b);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.18), 0 8px 18px -6px rgba(199,169,107,0.5);
  transition: transform .3s ease;
}
.mnx-contacts__title {
  margin: 0; color: #e8ecf4; font-weight: 700; font-size: 15px; line-height: 1.3;
}
.mnx-contacts__text {
  margin: 3px 0 0; color: #c3ccda; font-size: 14px; line-height: 1.6;
}
.mnx-contacts__item:hover .mnx-ico { transform: translateY(-2px) scale(1.05); }

/* Compliance box with conic border */
.mnx-compliance {
  margin-top: 18px;
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: #000;
  border: 1px solid transparent;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.58), 0 6px 24px -8px rgba(142,197,255,0.25);
  transform: translate3d(0,10px,0);
  opacity: 0;
  animation: mnx-reveal .9s ease-out .46s forwards;
}
.mnx-compliance__title { margin: 0 0 6px; font-size: 15px; font-weight: 700; color: #e8ecf4; }
.mnx-compliance__text { margin: 0; color: #c3ccda; font-size: 14px; line-height: 1.7; }
.mnx-link { color: #d9c48e; text-decoration: none; border-bottom: 1px dashed rgba(231,213,164,0.45); }
.mnx-link:hover { color: #f0dfb0; border-color: currentColor; }

/* Form column */
.mnx-formwrap {
  position: relative;
  border-radius: 18px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)) padding-box,
    conic-gradient(from 180deg, rgba(231,213,164,0.85), rgba(231,213,164,0) 25%, rgba(142,197,255,0.55) 55%, rgba(231,213,164,0.85)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 26px 60px -26px rgba(0,0,0,0.55), 0 4px 22px -8px rgba(142,197,255,0.22);
  overflow: hidden;
  transform: translate3d(0,16px,0) scale(0.985);
  opacity: 0;
  animation: mnx-reveal .9s ease-out .18s forwards;
}
.mnx-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 18px);
  padding: clamp(16px, 2.4vw, 24px);
  background: rgba(11,18,32,0.6);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}
.mnx-field { display: grid; gap: 6px; }
.mnx-label { font-size: 14px; color: #e8ecf4; }
.mnx-input,
.mnx-textarea {
  width: 100%;
  padding: 11px 14px;
  background: #0f1a2e;
  border: 1px solid #24324a;
  color: #e8ecf4;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.mnx-input::placeholder,
.mnx-textarea::placeholder { color: #8da0bd; }
.mnx-input:focus,
.mnx-textarea:focus {
  outline: none;
  border-color: #8ec5ff;
  box-shadow: 0 0 0 3px rgba(142,197,255,0.25);
  background: #0b1527;
}
.mnx-textarea { min-height: 120px; resize: vertical; }

/* Legal note */
.mnx-legal {
  margin: 2px 0 2px;
  color: #aeb8c8;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
}

/* Submit button with sheen */
.mnx-submit {
  justify-self: start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  font-weight: 600; letter-spacing: .02em;
  color: #0b1220;
  background:
    linear-gradient(180deg, #e8d8a8, #c7a96b) padding-box,
    linear-gradient(90deg, #ffffff, rgba(255,255,255,0)) border-box;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 18px -6px rgba(199,169,107,0.55), inset 0 -1px 0 rgba(0,0,0,0.15);
  position: relative; overflow: hidden; transform: translateZ(0);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}
.mnx-submit::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 70%);
  transform: translateX(-120%);
  transition: transform .65s ease;
}
.mnx-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 28px -10px rgba(199,169,107,0.6), inset 0 -1px 0 rgba(0,0,0,0.15); }
.mnx-submit:hover::after { transform: translateX(120%); }
.mnx-submit__ico { flex: 0 0 auto; }

/* Animations */
@keyframes mnx-mesh-pan { 0% { transform: translateY(0); } 100% { transform: translateY(46px); } }
@keyframes mnx-float { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(0,-10px,0) scale(1.02); } }
@keyframes mnx-reveal { to { opacity: 1; transform: translate3d(0,0,0) scale(1); } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mnx-bg--mesh, .mnx-bg--orb-a, .mnx-bg--orb-b, .mnx-submit::after { animation: none !important; transition: none !important; }
  .mnx-title, .mnx-lead, .mnx-contacts__item, .mnx-formwrap { transform: none !important; opacity: 1 !important; }
}

/* Responsive */
@media (max-width: 992px) {
  .mnx-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .mnx-title { font-size: clamp(24px, 6.4vw, 32px); }
  .mnx-lead  { font-size: clamp(13px, 2.8vw, 16px); }
  .mnx-form  { padding: 16px; }
  .mnx-submit { justify-self: stretch; text-align: center; width: 100%; }
}

/* Keyboard focus */
.mnx-link:focus-visible,
.mnx-submit:focus-visible {
  outline: 2px solid #8ec5ff;
  outline-offset: 3px;
  border-radius: 12px;
}


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

/* ===== Premium Footer (business look) ===== */
.svx-fleet-footer {
  position: relative;
  padding: clamp(64px, 8.8vw, 120px) 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, #1a2740 0%, rgba(26,39,64,0) 60%),
    linear-gradient(180deg, #0b1220 0%, #0e1627 100%);
  color: #e8ecf4;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Background decorations */
.svx-bg { position: absolute; pointer-events: none; z-index: 0; }
.svx-bg--mesh {
  inset: -1px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px, 46px 46px;
  opacity: 0.35;
  animation: svx-mesh-pan 28s linear infinite;
}
.svx-bg--orb-a {
  width: 560px; height: 560px; left: -190px; bottom: -210px; border-radius: 50%;
  background: radial-gradient(circle at 60% 60%, #d9c48e 0%, rgba(217,196,142,0) 62%);
  filter: blur(40px); opacity: 0.22; animation: svx-float 22s ease-in-out infinite;
}
.svx-bg--orb-b {
  width: 520px; height: 520px; right: -180px; top: -170px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #8ec5ff 0%, rgba(142,197,255,0) 60%);
  filter: blur(40px); opacity: 0.20; animation: svx-float 20s ease-in-out infinite reverse;
}
/* thin top glow line */
.svx-top-glow {
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, rgba(231,213,164,0), rgba(231,213,164,0.7), rgba(231,213,164,0));
  opacity: .8;
}

/* Wrap */
.svx-wrap { position: relative; z-index: 1; display: grid; gap: clamp(26px, 4.2vw, 40px); }

/* Legal block with conic border */
.svx-legal {
  position: relative;
  border-radius: 18px;
  padding: clamp(18px, 2.8vw, 26px);
  background:#000;
  border: 1px solid transparent;
  box-shadow:
    0 24px 60px -24px rgba(0,0,0,0.58),
    0 6px 24px -8px rgba(142,197,255,0.25);
  transform: translate3d(0,12px,0) scale(0.985);
  opacity: 0;
  animation: svx-reveal 0.9s ease-out forwards;
}
.svx-legal__head { margin-bottom: 6px; }
.svx-legal__title {
  margin: 0;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: .02em;
  color: #f1e4b0;
  text-transform: none;
}
.svx-legal__content {
  display: grid;
  gap: 12px;
}
.svx-legal__p {
  margin: 0;
  font-size: clamp(13px, 1.55vw, 15px);
  line-height: 1.7;
  color: #c3ccda;
  transition: color .25s ease;
}
.svx-legal__p strong { color: #e8ecf4; font-weight: 700; }
.svx-legal__p a {
  color: #d9c48e; text-decoration: none; border-bottom: 1px dashed rgba(231,213,164,0.45);
  transition: color .2s ease, border-color .2s ease;
}
.svx-legal__p a:hover { color: #f0dfb0; border-color: currentColor; }
.svx-legal__p:hover { color: #d3d9e6; }

/* Bottom row */
.svx-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(14px, 3vw, 28px);
  transform: translate3d(0,10px,0) scale(0.99);
  opacity: 0;
  animation: svx-reveal .9s ease-out .15s forwards;
}
@media (max-width: 768px) {
  .svx-bottom { flex-direction: column; align-items: flex-start; }
}

.svx-copy {
  margin: 0;
  color: #aeb8c8;
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: 1.6;
  transition: color .25s ease;
}
.svx-copy:hover { color: #d7deea; }

/* Nav */
.svx-nav { position: relative; }
.svx-nav__list {
  display: flex; flex-wrap: wrap; gap: clamp(10px, 2.2vw, 20px);
  list-style: none; margin: 0; padding: 0;
}
.svx-nav__item {
  transform: translateX(-8px);
  opacity: 0;
  animation: svx-slide-in .6s ease-out forwards;
}
.svx-nav__item:nth-child(1){ animation-delay: .25s; }
.svx-nav__item:nth-child(2){ animation-delay: .32s; }
.svx-nav__item:nth-child(3){ animation-delay: .39s; }
.svx-nav__item:nth-child(4){ animation-delay: .46s; }

.svx-nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  color: #e8ecf4;
  font-size: clamp(12px, 1.55vw, 14px);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 10px;
  transition: color .2s ease, transform .25s ease, background .25s ease;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.svx-nav__link:hover {
  color: #0f1524;
  background: linear-gradient(180deg, #e7d5a4, #c5a56b);
  border-color: transparent;
  transform: translateY(-1px);
}
.svx-nav__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(180deg, #e7d5a4, #c5a56b);
  box-shadow: 0 0 0 2px rgba(231,213,164,0.25);
}

/* Animations */
@keyframes svx-mesh-pan { 0% { transform: translateY(0); } 100% { transform: translateY(46px); } }
@keyframes svx-float { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(0,-10px,0) scale(1.02); } }
@keyframes svx-reveal { to { opacity: 1; transform: translate3d(0,0,0) scale(1); } }
@keyframes svx-slide-in { to { opacity: 1; transform: translateX(0); } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .svx-bg--mesh, .svx-bg--orb-a, .svx-bg--orb-b { animation: none !important; }
  .svx-legal, .svx-bottom, .svx-nav__item { transform: none !important; opacity: 1 !important; }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .svx-fleet-footer { padding: clamp(40px, 7.2vw, 70px) 0; }
  .svx-legal__title { font-size: clamp(15px, 2.8vw, 17px); }
  .svx-legal__p { font-size: clamp(12px, 2.6vw, 14px); }
  .svx-nav__list { gap: 10px; }
  .svx-nav__link { padding: 6px 10px; }
}


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