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

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

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

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

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

html {
  scroll-behavior: smooth;
}

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

body.lock {
  overflow: hidden;
}

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

a {
  transition: all 0.3s ease;
}

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

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


/* header */

/* ====== Шапка: новый деловой стиль ====== */
.navsuite {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-image: linear-gradient(180deg, #0c0f17 0%, #0f1421 60%, #0c0f17 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  padding: clamp(12px, 2.6vw, 22px) 0;
  animation: fadeDropLux 600ms ease-out;
  color: #eef2f8;
}
.navsuite::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(212,175,55,0) 0%, rgba(212,175,55,0.6) 50%, rgba(212,175,55,0) 100%);
  pointer-events: none;
}
.navframe {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}
.brandlink {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-badge {
  display: inline-grid;
  place-items: center;
  width: clamp(40px, 4.4vw, 52px);
  height: clamp(40px, 4.4vw, 52px);
  border-radius: 14px;
  background-image: linear-gradient(135deg, #152035 0%, #0f1a2b 60%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 14px 28px rgba(0,0,0,0.45);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.logo-img {
  display: block;
  width: 66%;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
  background-color: #ffffff;
}
.brandlink:hover .logo-badge {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 18px 36px rgba(0,0,0,0.55);
}
.brand-name {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: clamp(16px, 1.6vw, 20px);
  color: #f5f7fb;
  text-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.topnav {
  display: none;
}
@media (min-width: 1025px) {
  .topnav {
    display: block;
  }
}
.topnav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: clamp(18px, 3vw, 36px);
}
.topnav__item {
  position: relative;
}
.topnav__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: #e9edf7;
  padding: 10px 14px;
  border-radius: 12px;
  position: relative;
  transition: transform 250ms ease, background-color 250ms ease, color 250ms ease;
  isolation: isolate;
}
.topnav__link .ui-ico {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: 0.9;
  transition: transform 250ms ease, opacity 250ms ease;
}
.topnav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(212,175,55,0) 0%, rgba(212,175,55,0.9) 50%, rgba(212,175,55,0) 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 320ms ease;
}
.topnav__link:hover {
  color: #f0d79b;
  background-color: rgba(255,255,255,0.03);
  transform: translateY(-1px);
}
.topnav__link:hover .ui-ico {
  transform: translateY(-1px);
  opacity: 1;
}
.topnav__link:hover::after {
  transform: scaleX(1);
}
.topnav__link:focus-visible {
  outline: 2px solid #f0d79b;
  outline-offset: 2px;
  background-color: rgba(240,215,155,0.08);
}

.header-actions {
  display: block;
}
.burger {
  width: 38px;
  height: 28px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 220ms ease;
}
.burger span,
.burger::before,
.burger::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #eef2f8;
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: transform 300ms ease, opacity 300ms ease, width 300ms ease, top 300ms ease, bottom 300ms ease;
}
.burger span { top: 50%; transform: translateY(-50%); }
.burger::before { top: 4px; }
.burger::after { bottom: 4px; }
.burger:hover { transform: scale(1.05); }
.burger:hover span { width: 85%; }
@media (min-width: 1025px) {
  .header-actions { display: none; }
}

.burger.is-open::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.burger.is-open::after {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.burger.is-open span {
  opacity: 0;
}

.elite-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-image: linear-gradient(160deg, rgba(12,16,26,0.98) 0%, rgba(18,25,40,0.98) 100%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  backdrop-filter: blur(6px) saturate(120%);
  transform: translateY(-4%);
  opacity: 0;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 320ms ease;
  z-index: 999;
}
.elite-mobile-menu.is-open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mm-panel {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(24px, 6vw, 48px);
}
.mm-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  align-self: center;
  display: grid;
  gap: clamp(22px, 4vw, 36px);
  text-align: center;
}
.mm-nav__item {
  opacity: 0;
  transform: translateY(10px);
}
.elite-mobile-menu.is-open .mm-nav__item {
  animation: mmRise 420ms ease forwards;
}
.elite-mobile-menu.is-open .mm-nav__item:nth-child(1) { animation-delay: 80ms; }
.elite-mobile-menu.is-open .mm-nav__item:nth-child(2) { animation-delay: 160ms; }
.elite-mobile-menu.is-open .mm-nav__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.04em;
  font-size: clamp(22px, 6vw, 30px);
  color: #f5f7fb;
  padding: 12px 18px;
  border-radius: 16px;
  transition: background-color 250ms ease, transform 250ms ease, letter-spacing 250ms ease, color 250ms ease;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: inset 0 0 0 1px rgba(240,215,155,0.18);
}
.mobile-nav-connection:hover {
  background-color: rgba(240,215,155,0.08);
  color: #f0d79b;
  transform: translateY(-1px);
  letter-spacing: 0.08em;
}
.mm-foot {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
  text-align: center;
}
.mm-note {
  margin: 0;
  font-size: clamp(12px, 2.6vw, 14px);
  color: #bac7dd;
}

@keyframes fadeDropLux {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mmRise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .navframe { grid-template-columns: 1fr auto; }
  .topnav { display: none; }
}
@media (max-width: 600px) {
  .brand-name { font-size: 16px; }
}

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

@media (prefers-reduced-motion: reduce) {
  .navsuite, .topnav__link, .burger, .elite-mobile-menu, .mm-nav__item {
    animation: none;
    transition: none;
  }
}



/* --------------------hero---------------------- */
.c-suite-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 14vh, 160px) 0;
  background-image: radial-gradient(120% 120% at 18% 8%, #111a2b 0%, #0e1422 48%, #0b101b 100%);
  color: #eef3ff;
  isolation: isolate;
}
.c-suite-hero::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 140%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 24px);
  opacity: 0.7;
  pointer-events: none;
  transform: translateZ(0);
}
.c-suite-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -12%;
  width: 520px;
  height: 520px;
  background-image: radial-gradient(circle, rgba(240,215,155,0.22) 0%, rgba(240,215,155,0) 70%);
  filter: blur(12px);
  pointer-events: none;
  animation: csh-glow 7s ease-in-out infinite alternate;
}

.csh-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 1024px) {
  .csh-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(40px, 6vw, 88px);
  }
}

.csh-content {
  position: relative;
  z-index: 1;
  animation: csh-rise 700ms ease-out both;
}
.csh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(240,215,155,0.25);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset;
  margin-bottom: 14px;
}
.csh-pill {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0f1525;
  background-image: linear-gradient(135deg, #ffe6a2 0%, #f0d79b 100%);
  border-radius: 999px;
}
.csh-eyebrow-text {
  font-size: 13px;
  font-weight: 700;
  color: #e9edf7;
  opacity: 0.9;
}

.csh-headline {
  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: #f7f9ff;
  text-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.csh-accent {
  background-image: linear-gradient(92deg, #f0d79b 0%, #d2b464 50%, #f6e6b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.csh-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
}
@media (min-width: 600px) {
  .csh-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }
}
.csh-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
  will-change: transform;
}
.csh-feature:hover {
  transform: translateY(-2px);
  background-color: rgba(240,215,155,0.06);
  border-color: rgba(240,215,155,0.28);
}
.csh-ico {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: #f0d79b;
  opacity: 0.95;
}

.csh-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.csh-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: #0e1422;
  background-image: linear-gradient(135deg, #ffe6a2 0%, #d4af37 50%, #b68b1f 100%);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(212,175,55,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;
}
.csh-cta::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -30%;
  width: 30%;
  height: 200%;
  transform: rotate(25deg);
  background-image: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  animation: csh-shine 2.8s ease-in-out infinite;
}
.csh-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(212,175,55,0.45);
  filter: saturate(1.05);
}
.csh-cta:focus-visible {
  outline: 2px solid #f0d79b;
  outline-offset: 3px;
}

.csh-ghost {
  display: inline-block;
  text-decoration: none;
  padding: 14px 22px;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 16px);
  color: #eef3ff;
  background: transparent;
  border: 1px solid rgba(240,215,155,0.35);
  border-radius: 14px;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}
.csh-ghost:hover {
  background-color: rgba(240,215,155,0.08);
  color: #f0d79b;
  transform: translateY(-1px);
}

.csh-media {
  position: relative;
  z-index: 1;
  animation: csh-rise 820ms ease-out 80ms both;
}
.csh-figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  transform: translateZ(0);
}
.csh-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);
}
.csh-figure:hover .csh-image {
  transform: scale(1.015);
  filter: brightness(1) contrast(1.06) saturate(1.05);
}

.csh-kpi {
  position: absolute;
  left: 6%;
  bottom: -14px;
  background: rgba(8, 14, 26, 0.7);
  border: 1px solid rgba(240,215,155,0.3);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: csh-float 5.2s ease-in-out infinite;
  max-width: 88%;
}
.csh-kpi-line {
  display: flex;
  align-items: center;
  gap: 10px;
}
.csh-kpi-line + .csh-kpi-line {
  margin-top: 6px;
}
.csh-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f0d79b;
  box-shadow: 0 0 0 6px rgba(240,215,155,0.18);
}
.csh-kpi-text {
  font-size: 13px;
  color: #e8eaf3;
  font-weight: 700;
}

@keyframes csh-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes csh-shine {
  0% { left: -30%; }
  55% { left: 130%; }
  100% { left: 130%; }
}
@keyframes csh-glow {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.06); opacity: 1; }
}
@keyframes csh-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@media (max-width: 1023.98px) {
  .csh-kpi { left: 10px; right: 10px; bottom: -12px; }
}
@media (max-width: 599.98px) {
  .c-suite-hero { padding: clamp(64px, 14vh, 120px) 0 96px; }
  .csh-headline { font-size: clamp(28px, 8vw, 40px); }
  .csh-lead { font-size: clamp(14px, 3.6vw, 17px); }
}

@media (prefers-reduced-motion: reduce) {
  .csh-content,
  .csh-media,
  .csh-kpi,
  .c-suite-hero::after {
    animation: none !important;
  }
  .csh-cta::after { display: none; }
}

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




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

.aurelius-metrics {
  position: relative;
  padding: clamp(72px, 12vh, 140px) 0;
  background-image: radial-gradient(120% 120% at 18% 0%, #0f1626 0%, #0b1120 55%, #0a0f1b 100%);
  color: #ecf2ff;
  overflow: hidden;
  isolation: isolate;
}
.aurelius-metrics::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 150%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 26px),
    radial-gradient(50% 50% at 85% 18%, rgba(240,215,155,0.22) 0%, rgba(240,215,155,0) 60%);
  pointer-events: none;
}
.aurelius-metrics::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86%;
  height: 2px;
  transform: translateX(-50%);
  background-image: linear-gradient(90deg, rgba(255,255,255,0), rgba(240,215,155,0.55), rgba(255,255,255,0));
  opacity: 1;
}

.am-wrap {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
}
.am-head {
  display: grid;
  gap: 6px;
  justify-items: start;
  animation: am-rise 600ms ease-out both;
}
.am-title {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3.6vw, 28px);
  letter-spacing: 0.02em;
  color: #f8f9ff;
}
.am-sub {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 2vw, 15px);
  color: #c5d2ea;
  opacity: 0.9;
}

.am-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.8vw, 26px);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .am-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 32px);
  }
}

.am-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 18px;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border: 1px solid rgba(240,215,155,0.35);
  box-shadow: 0 18px 44px rgba(0,0,0,0.46);
  color: #eaf0ff;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
  animation: am-pop 520ms cubic-bezier(0.22,1,0.36,1) both;
}
.am-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(90% 90% at 0% 0%, rgba(240,215,155,0.15), rgba(240,215,155,0));
  opacity: 0.9;
  pointer-events: none;
}
.am-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 40%;
  height: 220%;
  transform: rotate(25deg);
  background-image: 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;
}
.am-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.52);
  border-color: rgba(240,215,155,0.6);
  background-color: rgba(255,255,255,0.06);
}
.am-card:hover::after {
  opacity: 0.55;
}

.am-iconbox {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background-image: linear-gradient(135deg, #f0d79b, #d4af37);
  box-shadow: 0 10px 22px rgba(212,175,55,0.35), 0 1px 0 rgba(255,255,255,0.6) inset;
  transform: perspective(600px) translateZ(0);
  transition: transform 260ms ease;
}
.am-card:hover .am-iconbox {
  transform: perspective(600px) translateZ(12px) rotateX(2deg);
}
.am-ico {
  width: 22px;
  height: 22px;
  fill: #0d1322;
}

.am-data {
  display: grid;
  gap: 4px;
}
.am-figure {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5.6vw, 44px);
  letter-spacing: 0.01em;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.am-caption {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 1.8vw, 15px);
  color: #c7d4ee;
}

@keyframes am-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes am-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .am-head,
  .am-card { animation: none; transition: none; }
  .am-card::after { opacity: 0; }
}

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



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






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

.marquis-offerings {
  position: relative;
  padding: clamp(80px, 14vh, 160px) 0;
  background-image: radial-gradient(120% 120% at 16% 0%, #0f1729 0%, #0c1322 55%, #0a0f1b 100%);
  color: #eef3ff;
  overflow: hidden;
  isolation: isolate;
}
.marquis-offerings::before {
  content: "";
  position: absolute;
  inset: -12% -18% auto -18%;
  height: 150%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 26px),
    radial-gradient(60% 60% at 84% 16%, rgba(240,215,155,0.22) 0%, rgba(240,215,155,0) 60%);
  pointer-events: none;
}
.marquis-offerings::after {
  content: "";
  position: absolute;
  right: -14%;
  top: -14%;
  width: 520px;
  height: 520px;
  background-image: radial-gradient(circle, rgba(240,215,155,0.22) 0%, rgba(240,215,155,0) 70%);
  filter: blur(12px);
  animation: mo-glow 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.mo-header {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 48px);
  animation: mo-rise 640ms ease-out both;
}
.mo-overline {
  margin: 0 0 8px 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 1.6vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c7d2ea;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(240,215,155,0.28);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}
.mo-title {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5.8vw, 46px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #f7f9ff;
  text-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.mo-accent {
  background-image: linear-gradient(92deg, #f0d79b 0%, #d4af37 50%, #f6e6b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.mo-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-column-gap: 14px;
  align-items: start;
  padding: clamp(22px, 3.4vw, 28px);
  border-radius: 20px;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(240,215,155,0.38);
  box-shadow: 0 18px 44px rgba(0,0,0,0.46);
  overflow: hidden;
  transform: translateZ(0);
  color: #e7eeff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
  animation: mo-pop 520ms cubic-bezier(0.22,1,0.36,1) both;
}
.mo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(100% 100% at 0% 0%, rgba(240,215,155,0.16), rgba(240,215,155,0));
  opacity: 0.9;
  pointer-events: none;
}
.mo-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 40%;
  height: 220%;
  transform: rotate(25deg);
  background-image: 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;
}
.mo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.52);
  border-color: rgba(240,215,155,0.6);
  background-color: rgba(255,255,255,0.06);
}
.mo-card:hover::after { opacity: 0.55; }

.mo-iconwrap {
  grid-row: 1 / span 2;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background-image: linear-gradient(135deg, #f0d79b, #d4af37);
  box-shadow: 0 12px 26px rgba(212,175,55,0.35), 0 1px 0 rgba(255,255,255,0.6) inset;
  transform: perspective(800px) translateZ(0);
  transition: transform 260ms ease;
}
.mo-card:hover .mo-iconwrap { transform: perspective(800px) translateZ(12px) rotateX(2deg); }
.mo-ico {
  width: 24px;
  height: 24px;
  fill: #0d1322;
}

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

@keyframes mo-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mo-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes mo-glow {
  from { transform: scale(1); opacity: 0.85; }
  to { transform: scale(1.06); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .mo-header,
  .mo-card,
  .marquis-offerings::after { animation: none; transition: none; }
  .mo-card::after { opacity: 0; }
}

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



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

.executive-assist {
  position: relative;
  padding: clamp(84px, 14vh, 160px) 0;
  background-image: radial-gradient(120% 120% at 18% 0%, #0f182c 0%, #0c1323 55%, #0a101b 100%);
  color: #eef3ff;
  overflow: hidden;
  isolation: isolate;
}
.executive-assist::before {
  content: "";
  position: absolute;
  inset: -12% -18% auto -18%;
  height: 150%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 26px),
    radial-gradient(60% 60% at 84% 16%, rgba(240,215,155,0.22) 0%, rgba(240,215,155,0) 60%);
  pointer-events: none;
}
.executive-assist::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86%;
  height: 2px;
  transform: translateX(-50%);
  background-image: linear-gradient(90deg, rgba(255,255,255,0), rgba(240,215,155,0.55), rgba(255,255,255,0));
}

.exa-head {
  text-align: center;
  margin-bottom: clamp(28px, 5vw, 52px);
  animation: exa-rise 620ms ease-out both;
}
.exa-overline {
  margin: 0 0 10px 0;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(240,215,155,0.28);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 1.6vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c7d2ea;
}
.exa-title {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5.8vw, 46px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #f7f9ff;
  text-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.exa-accent {
  background-image: linear-gradient(92deg, #f0d79b 0%, #d4af37 50%, #f6e6b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.exa-sub {
  margin: 10px auto 0;
  max-width: 70ch;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
  color: #c5d1ea;
  opacity: 0.95;
}

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

.exa-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  padding: clamp(22px, 3.4vw, 28px);
  border-radius: 20px;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(240,215,155,0.38);
  box-shadow: 0 18px 44px rgba(0,0,0,0.46);
  color: #e7eeff;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
  animation: exa-pop 520ms cubic-bezier(0.22,1,0.36,1) both;
}
.exa-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(100% 100% at 0% 0%, rgba(240,215,155,0.16), rgba(240,215,155,0));
  opacity: 0.9;
  pointer-events: none;
}
.exa-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 40%;
  height: 220%;
  transform: rotate(25deg);
  background-image: 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;
}
.exa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.52);
  border-color: rgba(240,215,155,0.6);
  background-color: rgba(255,255,255,0.06);
}
.exa-card:hover::after { opacity: 0.55; }

.exa-iconwrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background-image: linear-gradient(135deg, #f0d79b, #d4af37);
  box-shadow: 0 12px 26px rgba(212,175,55,0.35), 0 1px 0 rgba(255,255,255,0.6) inset;
  transform: perspective(800px) translateZ(0);
  transition: transform 260ms ease;
}
.exa-card:hover .exa-iconwrap { transform: perspective(800px) translateZ(12px) rotateX(2deg); }
.exa-ico {
  width: 24px;
  height: 24px;
  fill: #0d1322;
}

.exa-cardtitle {
  margin: 6px 0 4px 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.exa-text {
  margin: 0 0 10px 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.7;
  color: #c7d4ee;
}

.exa-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: #0f1525;
  background-image: linear-gradient(135deg, #ffe6a2 0%, #d4af37 50%, #b68b1f 100%);
  box-shadow: 0 12px 26px rgba(212,175,55,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;
}
.exa-cta svg { width: 18px; height: 18px; }
.exa-cta::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -30%;
  width: 30%;
  height: 200%;
  transform: rotate(25deg);
  background-image: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  animation: exa-shine 2.8s ease-in-out infinite;
}
.exa-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(212,175,55,0.45);
  filter: saturate(1.05);
}

@keyframes exa-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes exa-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes exa-shine {
  0% { left: -30%; }
  55% { left: 130%; }
  100% { left: 130%; }
}

@media (prefers-reduced-motion: reduce) {
  .exa-head,
  .exa-card,
  .executive-assist::before { animation: none; transition: none; }
  .exa-cta::after { display: none; }
}

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


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

.clarity-pledge {
  position: relative;
  padding: clamp(88px, 14vh, 164px) 0;
  background-image: radial-gradient(120% 120% at 20% 0%, #0f192e 0%, #0c1323 55%, #0a0f1b 100%);
  color: #eef3ff;
  overflow: hidden;
  isolation: isolate;
}
.clarity-pledge::before {
  content: "";
  position: absolute;
  inset: -12% -18% auto -18%;
  height: 150%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 26px),
    radial-gradient(60% 60% at 84% 16%, rgba(240,215,155,0.22) 0%, rgba(240,215,155,0) 60%);
  pointer-events: none;
}
.clarity-pledge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86%;
  height: 2px;
  transform: translateX(-50%);
  background-image: linear-gradient(90deg, rgba(255,255,255,0), rgba(240,215,155,0.55), rgba(255,255,255,0));
}

.cp-shell {
  position: relative;
  border-radius: 22px;
  padding: clamp(22px, 3.4vw, 32px);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
  border: 1px solid rgba(240,215,155,0.28);
  box-shadow: 0 20px 46px rgba(0,0,0,0.46);
  overflow: hidden;
}
.cp-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(110% 110% at 0% 0%, rgba(240,215,155,0.16), rgba(240,215,155,0));
  pointer-events: none;
}

.cp-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: clamp(24px, 4.6vw, 36px);
  animation: cp-rise 640ms ease-out both;
}
.cp-badge {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background-image: linear-gradient(135deg, #f0d79b, #d4af37);
  box-shadow: 0 12px 26px rgba(212,175,55,0.35), 0 1px 0 rgba(255,255,255,0.6) inset;
  color: #0f1525;
}
.cp-badge-ico { width: 26px; height: 26px; display: block; }
.cp-titles { display: grid; gap: 6px; }
.cp-title {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 5.6vw, 40px);
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: #f7f9ff;
  text-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.cp-sub {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 2vw, 15px);
  color: #c7d2ea;
  opacity: 0.95;
}

.cp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3.4vw, 32px);
}
@media (min-width: 992px) {
  .cp-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: clamp(22px, 4vw, 42px);
  }
}

.cp-statement {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(15px, 2.1vw, 17px);
  line-height: 1.8;
  color: #c9d4ea;
  transform: translateY(10px);
  opacity: 0;
  animation: cp-reveal 720ms cubic-bezier(0.22,1,0.36,1) 80ms forwards;
}
.cp-statement p { margin: 0 0 16px 0; }
.cp-mark {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background-image: linear-gradient(135deg, #ffe6a2 0%, #d4af37 60%, #b88d22 100%);
  color: #0f1525;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(212,175,55,0.35), 0 1px 0 rgba(255,255,255,0.6) inset;
}

.cp-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 560px) {
  .cp-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.cp-point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border: 1px solid rgba(240,215,155,0.28);
  color: #eaf0ff;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}
.cp-point:hover {
  transform: translateY(-2px);
  background-color: rgba(240,215,155,0.10);
  border-color: rgba(240,215,155,0.42);
}
.cp-ico {
  width: 18px;
  height: 18px;
  color: #f0d79b;
  flex: 0 0 18px;
}

.cp-aside {
  position: relative;
  border-radius: 18px;
  padding: 20px;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
  border: 1px solid rgba(240,215,155,0.28);
  box-shadow: 0 16px 40px rgba(0,0,0,0.44);
  transform: translateY(10px);
  opacity: 0;
  animation: cp-reveal 760ms cubic-bezier(0.22,1,0.36,1) 160ms forwards;
}
.cp-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: #e8edf8;
}
.cp-quote-ico { width: 20px; height: 20px; color: #f0d79b; }
.cp-quote p { margin: 0; font-size: 15px; line-height: 1.7; }

.cp-sign {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.cp-rule {
  display: inline-block;
  width: 54px;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(240,215,155,0), rgba(240,215,155,0.85), rgba(240,215,155,0));
  animation: cp-glow 2800ms ease-in-out infinite;
}
.cp-name {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #d6e2fb;
  text-transform: uppercase;
}

.cp-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.cp-kpi {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border: 1px solid rgba(240,215,155,0.24);
}
.cp-kpi-num {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #ffffff;
}
.cp-kpi-label {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #c6d1e9;
}

@keyframes cp-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cp-reveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cp-glow {
  0% { box-shadow: 0 0 0 rgba(240,215,155,0); }
  50% { box-shadow: 0 0 14px rgba(240,215,155,0.45); }
  100% { box-shadow: 0 0 0 rgba(240,215,155,0); }
}

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

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



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




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

.concierge-onboard {
  position: relative;
  padding: clamp(90px, 14vh, 168px) 0;
  background-image: radial-gradient(120% 120% at 18% 0%, #0f182e 0%, #0b1324 55%, #0a0f1b 100%);
  color: #eef3ff;
  overflow: hidden;
  isolation: isolate;
}
.concierge-onboard::before {
  content: "";
  position: absolute;
  inset: -12% -18% auto -18%;
  height: 150%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 26px),
    radial-gradient(60% 60% at 84% 16%, rgba(240,215,155,0.22) 0%, rgba(240,215,155,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.concierge-onboard::after {
  content: "";
  position: absolute;
  right: -16%;
  top: -16%;
  width: 600px;
  height: 600px;
  background-image: radial-gradient(circle, rgba(240,215,155,0.22) 0%, rgba(240,215,155,0) 70%);
  filter: blur(14px);
  animation: co-glow 7s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.co-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .co-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(28px, 5vw, 56px);
  }
}

.co-intro {
  position: relative;
  z-index: 1;
  animation: co-rise 680ms ease-out both;
  opacity: 1;
  transform: none;
}
.co-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.co-chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(240,215,155,0.28);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c7d2ea;
}
.co-chip--alt { border-color: rgba(156,199,255,0.35); }
.co-sep {
  width: 14px;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(255,255,255,0), rgba(240,215,155,0.7), rgba(255,255,255,0));
}

.co-title {
  margin: 0 0 10px 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 5.8vw, 46px);
  line-height: 1.16;
  letter-spacing: 0.01em;
  color: #f7f9ff;
  text-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.co-lead {
  margin: 0 0 18px 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(15px, 2.1vw, 17px);
  line-height: 1.8;
  color: #c9d4ea;
  max-width: 65ch;
  opacity: 0.96;
}

.co-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
}
@media (min-width: 560px) {
  .co-highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.co-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 14px;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border: 1px solid rgba(240,215,155,0.28);
  color: #eaf0ff;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}
.co-item:hover {
  transform: translateY(-2px);
  background-color: rgba(240,215,155,0.10);
  border-color: rgba(240,215,155,0.42);
}
.co-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background-image: linear-gradient(135deg, #f0d79b, #d4af37);
  box-shadow: 0 10px 22px rgba(212,175,55,0.35), 0 1px 0 rgba(255,255,255,0.6) inset;
  color: #0f1525;
}
.co-ico svg { width: 20px; height: 20px; display: block; }
.co-item-title {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
}
.co-item-text {
  margin: 4px 0 0 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  color: #d1def8;
  line-height: 1.6;
}

.co-note {
  margin-top: 10px;
  border-radius: 16px;
  padding: 16px;
  background-image: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
  border: 1px solid rgba(156,199,255,0.32);
  box-shadow: 0 14px 36px rgba(0,0,0,0.42);
  animation: co-rise 760ms ease-out 80ms both;
  opacity: 1;
  transform: none;
}
.co-note-title {
  margin: 0 0 8px 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
}
.co-note-text {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #c5d2ea;
}
.co-link {
  color: #f0d79b;
  text-decoration: none;
  border-bottom: 1px dashed rgba(240,215,155,0.7);
  transition: color 200ms ease, border-color 200ms ease;
}
.co-link:hover {
  color: #fff1c5;
  border-color: rgba(255,241,197,0.9);
}

.co-panel {
  position: relative;
  border-radius: 22px;
  padding: clamp(22px, 3.6vw, 30px);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(240,215,155,0.34);
  box-shadow: 0 22px 50px rgba(0,0,0,0.48);
  overflow: hidden;
  animation: co-reveal 780ms cubic-bezier(0.22,1,0.36,1) 140ms forwards;
  opacity: 1;
  transform: none;
  z-index: 1;
}
.co-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(110% 110% at 0% 0%, rgba(240,215,155,0.18), rgba(240,215,155,0));
  pointer-events: none;
}
.co-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.co-lock {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background-image: linear-gradient(135deg, #9cc7ff, #5aa0ff);
  color: #0d1322;
  box-shadow: 0 10px 22px rgba(90,160,255,0.35), 0 1px 0 rgba(255,255,255,0.6) inset;
}
.co-lock svg { width: 20px; height: 20px; }
.co-panel-sub {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #cfe0ff;
  text-transform: uppercase;
}

.co-form { display: grid; gap: 12px; }
.co-field { display: grid; gap: 8px; }
.co-label {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #f4f7ff;
}
.co-input,
.co-textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(240,215,155,0.42);
  background: #0e1727;
  color: #f5f8ff;
  padding: 14px 16px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.co-input::placeholder,
.co-textarea::placeholder { color: #9fb3d6; }
.co-input:focus,
.co-textarea:focus {
  outline: none;
  border-color: #f0d79b;
  box-shadow: 0 0 0 4px rgba(240,215,155,0.18);
  transform: translateY(-1px);
}
.co-textarea { resize: vertical; min-height: 140px; }

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

.co-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: #0f1525;
  background-image: linear-gradient(135deg, #ffe6a2 0%, #d4af37 50%, #b68b1f 100%);
  box-shadow: 0 14px 32px rgba(212,175,55,0.4), 0 1px 0 rgba(255,255,255,0.6) inset;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  position: relative;
  overflow: hidden;
}
.co-submit::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -30%;
  width: 28%;
  height: 200%;
  transform: rotate(25deg);
  background-image: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  animation: co-shine 2.6s ease-in-out infinite;
}
.co-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(212,175,55,0.5);
  filter: saturate(1.05);
}

@keyframes co-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes co-reveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes co-glow {
  from { transform: scale(1); opacity: 0.85; }
  to { transform: scale(1.06); opacity: 1; }
}
@keyframes co-shine {
  0% { left: -30%; }
  55% { left: 130%; }
  100% { left: 130%; }
}

.concierge-onboard, .concierge-onboard * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (prefers-reduced-motion: reduce) {
  .co-intro,
  .co-note,
  .co-panel,
  .concierge-onboard::after { animation: none; transition: none; }
  .co-submit::after { display: none; }
}



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

.vlf {
  position: relative;
  padding: clamp(84px, 14vh, 160px) 0 32px 0;
  background-image: radial-gradient(120% 120% at 16% 0%, #0f182e 0%, #0c1323 55%, #0a0f1b 100%);
  color: #eef3ff;
  overflow: hidden;
  isolation: isolate;
}
.vlf::before {
  content: "";
  position: absolute;
  inset: -12% -18% auto -18%;
  height: 150%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 26px),
    radial-gradient(60% 60% at 84% 16%, rgba(240,215,155,0.22) 0%, rgba(240,215,155,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.vlf::after {
  content: "";
  position: absolute;
  right: -14%;
  top: -14%;
  width: 560px;
  height: 560px;
  background-image: radial-gradient(circle, rgba(240,215,155,0.22) 0%, rgba(240,215,155,0) 70%);
  filter: blur(12px);
  animation: vlf-glow 7s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.vlf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 36px);
  margin-bottom: clamp(24px, 4vw, 40px);
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .vlf-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr) minmax(0, .8fr) minmax(0, .8fr);
    gap: clamp(24px, 3.6vw, 44px);
  }
}

.vlf-brand { animation: vlf-rise 640ms ease-out both; }
.vlf-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.vlf-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background-image: linear-gradient(135deg, #f0d79b, #d4af37);
  color: #0f1525;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 26px rgba(212,175,55,0.35), 0 1px 0 rgba(255,255,255,0.6) inset;
}
.vlf-name {
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #f7f9ff;
  text-transform: uppercase;
}
.vlf-tag {
  margin: 8px 0 0 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  color: #c7d2ea;
  line-height: 1.8;
  max-width: 44ch;
  opacity: 0.95;
}

.vlf-title {
  margin: 0 0 10px 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.vlf-text {
  margin: 0 0 12px 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  color: #c7d6f0;
  line-height: 1.8;
}
.vlf-text strong { color: #e9f0ff; }
.vlf-text a {
  color: #f0d79b;
  text-decoration: none;
  border-bottom: 1px dashed rgba(240,215,155,0.7);
  transition: color 200ms ease, border-color 200ms ease;
}
.vlf-text a:hover { color: #fff1c5; border-color: rgba(255,241,197,0.9); }

.vlf-links {
  display: grid;
  grid-auto-rows: min-content;
  gap: 10px;
  animation: vlf-rise 700ms ease-out both;
}
.vlf-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;
}
.vlf-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-image: linear-gradient(90deg, #f0d79b, #b68b1f);
  transition: width 240ms ease;
  border-radius: 2px;
}
.vlf-link:hover { color: #fff1c5; transform: translateY(-1px); }
.vlf-link:hover::after { width: 100%; }

.vlf-contact { animation: vlf-rise 760ms ease-out both; }
.vlf-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  text-decoration: none;
  color: #e7eeff;
  margin-bottom: 10px;
}
.vlf-ico {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background-image: linear-gradient(135deg, #9cc7ff, #5aa0ff);
  color: #0d1322;
  box-shadow: 0 10px 22px rgba(90,160,255,0.35), 0 1px 0 rgba(255,255,255,0.6) inset;
  transition: transform 220ms ease;
}
.vlf-row:hover .vlf-ico { transform: translateY(-2px); }
.vlf-ico svg { width: 18px; height: 18px; display: block; }
.vlf-ctxt {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #cfe0ff;
}

.vlf-bar {
  position: relative;
  margin-top: clamp(10px, 2vw, 16px);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 1;
}
.vlf-bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(255,255,255,0), rgba(240,215,155,0.55), rgba(255,255,255,0));
}
@media (max-width: 768px) {
  .vlf-bar { flex-direction: column; align-items: flex-start; }
}
.vlf-copy {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  color: #c7d6f0;
}

.vlf-social {
  display: flex;
  gap: 10px;
}
.vlf-sbtn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  color: #f0d79b;
  background: rgba(240,215,155,0.16);
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
}
.vlf-sbtn svg { width: 18px; height: 18px; }
.vlf-sbtn:hover {
  transform: translateY(-2px);
  background-color: rgba(240,215,155,0.26);
  color: #fff1c5;
}

@keyframes vlf-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes vlf-glow {
  from { transform: scale(1); opacity: 0.85; }
  to { transform: scale(1.06); opacity: 1; }
}

.vlf, .vlf * {
  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;
}