@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 */

.lx-header-shell {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e6e9ef;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  animation: lxFadeIn 0.6s ease both;
}

.lx-header-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, #1f3b8f, #2563eb, #1f3b8f);
  opacity: 0.15;
}

.lx-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  min-height: clamp(56px, 8vw, 84px);
}

.lx-brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 12px);
  text-decoration: none;
}

.lx-brand-mark {
  width: clamp(36px, 5vw, 44px);
  height: clamp(36px, 5vw, 44px);
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.22), inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lx-brand-word {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #0f172a;
  transition: color 0.3s ease;
}

.lx-brand:hover .lx-brand-mark {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28), inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.lx-brand:hover .lx-brand-word {
  color: #1f2937;
}

.lx-nav {
  justify-self: end;
}

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

@media (min-width: 1024px) {
  .lx-nav-list {
    display: flex;
    align-items: center;
  }
}

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

.lx-nav-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 10px 2px;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  color: #1f2937;
  letter-spacing: 0.2px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.lx-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #0ea5e9, #2563eb, #0ea5e9);
  transition: transform 0.35s ease;
}

.lx-nav-link:hover {
  color: #0f172a;
  transform: translateY(-1px);
}

.lx-nav-link:hover::after {
  transform: scaleX(1);
}

.burger {
  width: 32px;
  height: 24px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

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

.burger::before,
.burger::after,
.burger span {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.burger:hover::before,
.burger:hover::after,
.burger:hover span {
  background-color: #1f3b8f;
}

.burger.is-open::before {
  transform: translateY(11px) rotate(45deg);
}

.burger.is-open::after {
  transform: translateY(-11px) rotate(-45deg);
}

.burger.is-open span {
  opacity: 0;
  transform: scale(0.6);
}

.elite-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 99;
}

.lx-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(280px, 80vw, 380px);
  height: 100%;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
  box-shadow: -24px 0 48px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
}

.elite-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.elite-mobile-menu.is-open .lx-drawer {
  transform: translateX(0);
}

.lx-drawer-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 20px 10px 20px;
  border-bottom: 1px solid #eef1f5;
}

.lx-brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.lx-brand-mini-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.22), inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.lx-brand-mini-word {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.lx-mobile-nav {
  list-style: none;
  padding: 20px;
  margin: 0;
  display: grid;
  gap: 12px;
}

.lx-mobile-item {
  animation: lxSlideIn 0.5s ease both;
}

.lx-mobile-item:nth-child(1) { animation-delay: 0.05s; }
.lx-mobile-item:nth-child(2) { animation-delay: 0.1s; }
.lx-mobile-item:nth-child(3) { animation-delay: 0.15s; }

.mobile-nav-connection {
  display: block;
  text-decoration: none;
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 600;
  color: #1f2937;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(0deg, rgba(2,6,23,0.02), rgba(2,6,23,0.02));
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06) inset;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.mobile-nav-connection:hover {
  color: #0f172a;
  transform: translateX(4px);
  background-color: #f3f6fb;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.mobile-nav-connection:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

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

@keyframes lxSlideIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 480px) {
  .lx-brand-word { font-size: 18px; }
  .lx-brand-mark { width: 34px; height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .lx-header-shell,
  .lx-brand-mark,
  .lx-nav-link,
  .burger::before,
  .burger::after,
  .burger span,
  .elite-mobile-menu,
  .lx-drawer,
  .lx-mobile-item {
    animation: none;
    transition: none;
  }
}


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

.orion-hero {
  position: relative;
  padding: clamp(72px, 12vh, 140px) 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(37, 99, 235, 0.25), transparent 60%),
    linear-gradient(180deg, #0b1220 0%, #0e1730 45%, #0b1220 100%);
  overflow: hidden;
}

.orion-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 140%;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 28px);
  opacity: 0.25;
  transform: translateY(-10px);
  pointer-events: none;
}

.orion-rail {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

@media (min-width: 992px) {
  .orion-rail {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.orion-copy {
  color: #e6ebf5;
  max-width: 760px;
  animation: orionFadeUp 0.7s ease both;
}

.orion-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9fb6ff;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(159, 182, 255, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
}

.orion-icon {
  display: inline-block;
  fill: currentColor;
}

.orion-headline {
  margin: 14px 0 16px 0;
  font-size: clamp(30px, 5.2vw, 52px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  position: relative;
  animation: orionReveal 0.9s ease 0.1s both;
}

.orion-headline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #34d399, #60a5fa, #22d3ee);
  animation: orionUnderline 1s ease 0.35s forwards;
}

.orion-lead {
  margin: 26px 0 30px 0;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.75;
  color: #d7deea;
  max-width: 62ch;
}

.orion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.orion-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #0b1220;
  background: linear-gradient(180deg, #e6f0ff 0%, #cfe1ff 100%);
  border: 1px solid #b7ccff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(99, 132, 255, 0.25), 0 2px 0 rgba(11, 18, 32, 0.2) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.orion-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(99, 132, 255, 0.32), 0 2px 0 rgba(11, 18, 32, 0.22) inset;
}

.orion-cta:active {
  transform: translateY(0);
}

.orion-cta:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 3px;
}

.orion-cta-icon {
  transition: transform 0.25s ease;
}

.orion-cta:hover .orion-cta-icon {
  transform: translateX(4px);
}

.orion-visual {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  justify-items: start;
  animation: orionFadeUp 0.7s ease 0.15s both;
}

.orion-visual-frame {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(3, 7, 18, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.orion-photo {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.01);
  transition: transform 0.6s ease;
}

.orion-visual-frame:hover .orion-photo {
  transform: scale(1.04);
}

.orion-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 220px at 80% 10%, rgba(96, 165, 250, 0.25), transparent 60%),
    radial-gradient(400px 180px at 20% 90%, rgba(52, 211, 153, 0.18), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 0.8;
}

.orion-visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -120px 120px rgba(11, 18, 32, 0.25);
  border-radius: 18px;
  pointer-events: none;
}

.orion-caption {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #b9c7dc;
}

@keyframes orionFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes orionUnderline {
  to { width: 120px; }
}

@media (max-width: 768px) {
  .orion-hero { padding: clamp(56px, 10vh, 100px) 0; }
  .orion-headline { font-size: clamp(26px, 8vw, 36px); }
  .orion-cta { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .orion-copy,
  .orion-visual,
  .orion-headline::after,
  .orion-photo,
  .orion-cta-icon {
    animation: none;
    transition: none;
  }
}



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

.aurelia-kpis {
  position: relative;
  padding: clamp(56px, 11vh, 128px) 0;
  background:
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 40%, #f9fbff 100%);
  overflow: hidden;
}

.aurelia-kpis::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 160px at 15% 0%, rgba(23, 37, 84, 0.06), transparent 70%),
    radial-gradient(700px 200px at 85% 0%, rgba(15, 23, 42, 0.05), transparent 70%);
  pointer-events: none;
}

.aurelia-kpis-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto clamp(28px, 5vw, 56px);
  color: #0f172a;
}

.aurelia-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #e9f0ff;
  border: 1px solid #d5e3ff;
  padding: 6px 10px;
  border-radius: 999px;
}

.aurelia-title {
  margin: 12px 0 6px 0;
  font-size: clamp(22px, 3.6vw, 36px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0b1220;
}

.aurelia-lead {
  margin: 0 auto;
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.7;
  color: #475569;
  max-width: 70ch;
}

.aurelia-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(12px, 2.4vw, 24px);
}

.aurelia-item {
  position: relative;
  list-style: none;
  background: #ffffff;
  border: 1px solid #e6ecf5;
  border-radius: 16px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.aurelia-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background:
    linear-gradient(120deg, rgba(29, 78, 216, 0.08), rgba(16, 185, 129, 0.08) 50%, rgba(59, 130, 246, 0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.aurelia-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.12);
  border-color: #d7e3ff;
}

.aurelia-item:hover::after {
  opacity: 1;
}

.aurelia-value {
  display: block;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 8px 0;
  color: #0b1220;
  background: linear-gradient(90deg, #0b1220, #1e3a8a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: aureliaCountGlow 1.2s ease both;
}

.aurelia-label {
  margin: 0;
  font-size: clamp(13px, 1.8vw, 16px);
  line-height: 1.6;
  color: #55627a;
  max-width: 32ch;
}

.aurelia-item:hover .aurelia-value {
  animation: aureliaShimmer 1.1s linear 1;
}

.aurelia-item:not(:first-child) {
  background-image:
    linear-gradient(#e8eef7, #e8eef7);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1px 70%;
}

@keyframes aureliaCountGlow {
  from {
    opacity: 0;
    transform: translateY(10px);
    text-shadow: 0 0 0 rgba(29, 78, 216, 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 6px 22px rgba(29, 78, 216, 0.18);
  }
}

@keyframes aureliaShimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 120% 50%;
  }
}

@media (max-width: 640px) {
  .aurelia-title { font-size: clamp(20px, 7vw, 28px); }
  .aurelia-grid { gap: 12px; }
  .aurelia-item:not(:first-child) { background: #ffffff; }
}

@media (prefers-reduced-motion: reduce) {
  .aurelia-item,
  .aurelia-value {
    animation: none;
    transition: none;
  }
}


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






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

.cadenza-suite {
  position: relative;
  padding: clamp(64px, 12vh, 140px) 0;
  background:
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 40%, #f5f8ff 100%);
  overflow: hidden;
}

.cadenza-suite::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(13, 27, 42, 0.04) 0 1px, transparent 1px 28px),
    radial-gradient(600px 180px at 10% 0%, rgba(29, 78, 216, 0.08), transparent 70%),
    radial-gradient(700px 220px at 90% -5%, rgba(16, 185, 129, 0.08), transparent 70%);
  pointer-events: none;
}

.cadenza-wrap {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
}

@media (min-width: 1024px) {
  .cadenza-wrap {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
}

.cadenza-lead {
  position: relative;
  max-width: 720px;
  color: #0b1220;
}

@media (min-width: 1024px) {
  .cadenza-lead {
    position: sticky;
    top: 84px;
  }
}

.cadenza-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #e8f0ff;
  border: 1px solid #d5e3ff;
  padding: 6px 10px;
  border-radius: 999px;
}

.cadenza-title {
  margin: 12px 0 8px 0;
  font-size: clamp(24px, 3.8vw, 40px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0b1220;
  position: relative;
}

.cadenza-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  height: 4px;
  width: 96px;
  background: linear-gradient(90deg, #1d4ed8, #10b981, #2563eb);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.cadenza-note {
  margin-top: 22px;
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.75;
  color: #475569;
  max-width: 60ch;
}

.cadenza-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 3vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.cadenza-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.06), rgba(13, 27, 42, 0));
  border-radius: 2px;
}

@media (min-width: 640px) {
  .cadenza-grid::before {
    left: 10px;
  }
}

.cadenza-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e6ecf5;
  border-radius: 18px;
  padding: clamp(22px, 3.2vw, 28px);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
  animation: cadenzaIn 0.7s ease both;
  overflow: hidden;
}

.cadenza-card:nth-child(1) { animation-delay: 0.05s; }
.cadenza-card:nth-child(2) { animation-delay: 0.12s; }
.cadenza-card:nth-child(3) { animation-delay: 0.18s; }

.cadenza-card::before {
  content: attr(data-seq);
  position: absolute;
  top: 18px;
  left: -2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  background: #eef3ff;
  border: 1px solid #dbe6ff;
  padding: 4px 8px;
  border-radius: 999px;
  transform: translateX(-4px);
}

.cadenza-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 60%;
  height: 200%;
  transform: rotate(22deg);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(59,130,246,0.18) 50%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.cadenza-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.12);
  border-color: #d4e1ff;
  background-color: #ffffff;
}

.cadenza-card:hover::after {
  opacity: 1;
  transform: rotate(22deg) translateX(18%);
}

.cadenza-icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  transform: translateZ(0);
}

.cadenza-icon-plate {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 16px;
  background:
    linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
  border: 1px solid #dbe6ff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12) inset, 0 8px 16px rgba(2, 6, 23, 0.06);
  transform: rotate(45deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cadenza-icon-svg {
  position: absolute;
  inset: 0;
  margin: auto;
  color: #1d4ed8;
  transform: rotate(-45deg);
  transition: transform 0.35s ease, color 0.35s ease;
}

.cadenza-card:hover .cadenza-icon-plate {
  transform: rotate(45deg) translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.16) inset, 0 14px 28px rgba(2, 6, 23, 0.12);
}

.cadenza-card:hover .cadenza-icon-svg {
  transform: rotate(-45deg) translateX(2px);
  color: #0f3fb5;
}

.cadenza-card-title {
  margin: 10px 0 6px 0;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.35;
  font-weight: 800;
  color: #0b1220;
  letter-spacing: -0.01em;
}

.cadenza-card-text {
  margin: 0;
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.7;
  color: #475569;
  max-width: 48ch;
}

@keyframes cadenzaIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
  .cadenza-title { font-size: clamp(22px, 7vw, 30px); }
  .cadenza-grid::before { display: none; }
  .cadenza-card::before { left: 8px; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cadenza-card,
  .cadenza-icon-plate,
  .cadenza-icon-svg,
  .cadenza-title::after {
    transition: none;
    animation: none;
  }
}


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

.meridian-offers {
  position: relative;
  padding: clamp(68px, 12vh, 140px) 0;
  background:
    radial-gradient(900px 280px at 10% -10%, rgba(29, 78, 216, 0.08), transparent 60%),
    radial-gradient(900px 280px at 90% -10%, rgba(16, 185, 129, 0.08), transparent 60%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 45%, #f6f9ff 100%);
  overflow: hidden;
}

.meridian-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto clamp(28px, 5vw, 56px);
  color: #0b1220;
  animation: meridianFade 0.6s ease both;
}

.meridian-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #e9f0ff;
  border: 1px solid #d6e3ff;
  padding: 6px 10px;
  border-radius: 999px;
}

.meridian-title {
  margin: 12px 0 8px 0;
  font-size: clamp(24px, 3.8vw, 40px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0b1220;
}

.meridian-sub {
  margin: 8px auto 0;
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.7;
  color: #475569;
  max-width: 70ch;
}

.meridian-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 3vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.meridian-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: #ffffff;
  border: 1px solid #e6ecf5;
  border-radius: 18px;
  padding: clamp(20px, 2.8vw, 28px);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
  overflow: hidden;
  animation: meridianRise 0.7s ease both;
}

.meridian-card:nth-child(1){animation-delay:.05s}
.meridian-card:nth-child(2){animation-delay:.1s}
.meridian-card:nth-child(3){animation-delay:.15s}
.meridian-card:nth-child(4){animation-delay:.2s}

.meridian-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: conic-gradient(from 0deg, rgba(29,78,216,0.12), rgba(16,185,129,0.12), rgba(59,130,246,0.12), rgba(29,78,216,0.12));
  transform: rotate(0.001deg);
  filter: blur(18px);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.meridian-card::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -30%;
  width: 60%;
  height: 220%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(79, 123, 255, 0.22) 50%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.meridian-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.12);
  border-color: #d7e4ff;
  background-color: #ffffff;
}

.meridian-card:hover::before {
  opacity: 1;
}

.meridian-card:hover::after {
  opacity: 1;
  transform: rotate(24deg) translateX(18%);
}

.meridian-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
  border: 1px solid #dbe6ff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12) inset, 0 10px 20px rgba(2, 6, 23, 0.06);
  transform: translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.meridian-card:hover .meridian-icon {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.16) inset, 0 16px 28px rgba(2, 6, 23, 0.12);
}

.meridian-svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  color: #1d4ed8;
  transition: transform 0.35s ease, color 0.35s ease;
}

.meridian-card:hover .meridian-svg {
  transform: translateX(2px);
  color: #0f3fb5;
}

.meridian-body {
  display: grid;
  gap: 6px;
}

.meridian-name {
  margin: 0;
  font-size: clamp(18px, 2.3vw, 22px);
  line-height: 1.35;
  font-weight: 800;
  color: #0b1220;
  letter-spacing: -0.01em;
}

.meridian-text {
  margin: 0;
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.7;
  color: #475569;
  max-width: 60ch;
}

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

@keyframes meridianRise {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
  .meridian-title { font-size: clamp(22px, 7vw, 30px); }
  .meridian-card { grid-template-columns: 1fr; }
  .meridian-icon { margin-bottom: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .meridian-head,
  .meridian-card,
  .meridian-card::after,
  .meridian-card::before,
  .meridian-icon,
  .meridian-svg {
    animation: none;
    transition: none;
  }
}

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

.vitrine-pledge {
  position: relative;
  padding: clamp(64px, 12vh, 136px) 0;
  background:
    radial-gradient(1200px 420px at 10% -10%, rgba(29, 78, 216, 0.10), transparent 60%),
    radial-gradient(1200px 420px at 90% -10%, rgba(16, 185, 129, 0.08), transparent 60%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 48%, #f6f9ff 100%);
  overflow: hidden;
}

.vitrine-pledge-shell {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: clamp(20px, 3vw, 28px);
}

.vitrine-pledge-head {
  position: relative;
  padding-left: clamp(10px, 1.8vw, 14px);
}

.vitrine-pledge-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #1d4ed8, #10b981);
  box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.04);
  transform: scaleY(0);
  transform-origin: top;
  animation: vpBarGrow 0.7s ease forwards;
}

.vitrine-pledge-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #eaf1ff;
  border: 1px solid #d7e4ff;
  padding: 6px 10px;
  border-radius: 999px;
  transform: translateY(2px);
}

.vitrine-pledge-title {
  margin: 10px 0 0 0;
  font-size: clamp(24px, 3.8vw, 42px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0b1220;
  position: relative;
}

.vitrine-pledge-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #1d4ed8, #10b981, #2563eb);
  border-radius: 2px;
  animation: vpUnderline 0.8s ease 0.25s forwards;
}

.vitrine-pledge-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e6ecf5;
  border-radius: 18px;
  padding: clamp(22px, 3.2vw, 32px);
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.06);
  overflow: hidden;
  isolation: isolate;
  animation: vpCardRise 0.6s ease 0.15s both;
}

.vitrine-pledge-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: conic-gradient(from 180deg, rgba(29,78,216,0.12), rgba(16,185,129,0.12), rgba(59,130,246,0.12), rgba(29,78,216,0.12));
  filter: blur(18px);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.vitrine-pledge-card::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -30%;
  width: 60%;
  height: 220%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(79,123,255,0.22) 50%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.vitrine-pledge-card:hover::before { opacity: 1; }
.vitrine-pledge-card:hover::after {
  opacity: 1;
  transform: rotate(24deg) translateX(16%);
}

.vitrine-pledge-mark {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
  border: 1px solid #dbe6ff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12) inset, 0 10px 20px rgba(2, 6, 23, 0.06);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vitrine-pledge-card:hover .vitrine-pledge-mark {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.16) inset, 0 16px 28px rgba(2, 6, 23, 0.12);
}

.vitrine-pledge-icon {
  width: 28px;
  height: 28px;
  color: #1d4ed8;
  transition: transform 0.35s ease, color 0.35s ease;
}

.vitrine-pledge-card:hover .vitrine-pledge-icon {
  transform: translateX(2px);
  color: #0f3fb5;
}

.vitrine-pledge-text {
  margin: 0;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.8;
  color: #475569;
}

.vitrine-pledge-brand {
  font-weight: 800;
  color: #0b1220;
  background: linear-gradient(90deg, #0b1220, #1e3a8a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: text-shadow 0.35s ease;
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

.vitrine-pledge-card:hover .vitrine-pledge-brand {
  text-shadow: 0 8px 26px rgba(29, 78, 216, 0.22);
}

.vitrine-pledge-sign {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 14px;
  color: #64748b;
}

.vitrine-pledge-seal {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e9f2ff;
  border: 1px solid #d6e3ff;
  color: #1d4ed8;
  font-weight: 800;
  line-height: 1;
}

.vitrine-pledge-caption { white-space: normal; }

@keyframes vpBarGrow {
  to { transform: scaleY(1); }
}

@keyframes vpUnderline {
  to { width: 140px; }
}

@keyframes vpCardRise {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
  .vitrine-pledge-title { font-size: clamp(22px, 7vw, 30px); }
  .vitrine-pledge-card { padding: clamp(18px, 4vw, 24px); }
}

@media (prefers-reduced-motion: reduce) {
  .vitrine-pledge-head::before,
  .vitrine-pledge-title::after,
  .vitrine-pledge-card,
  .vitrine-pledge-card::before,
  .vitrine-pledge-card::after,
  .vitrine-pledge-mark,
  .vitrine-pledge-icon,
  .vitrine-pledge-brand {
    animation: none;
    transition: none;
  }
}


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




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

.aurum-connect {
  position: relative;
  padding: clamp(72px, 12vh, 148px) 0;
  background:
    radial-gradient(1200px 360px at 12% -10%, rgba(29, 78, 216, 0.10), transparent 60%),
    radial-gradient(1200px 360px at 88% -12%, rgba(16, 185, 129, 0.08), transparent 60%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 50%, #f6f9ff 100%);
  overflow: hidden;
}

.aurum-grid {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
}

@media (min-width: 1024px) {
  .aurum-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
}

.aurum-lead {
  color: #0b1220;
  animation: aurumFade 0.7s ease both;
}

.aurum-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #e9f0ff;
  border: 1px solid #d6e3ff;
  padding: 6px 10px;
  border-radius: 999px;
}

.aurum-title {
  margin: 12px 0 8px 0;
  font-size: clamp(24px, 3.8vw, 42px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0b1220;
  position: relative;
}

.aurum-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #1d4ed8, #10b981, #2563eb);
  border-radius: 2px;
  animation: aurumUnderline 0.9s ease 0.2s forwards;
}

.aurum-sub {
  margin: 18px 0 0 0;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.75;
  color: #475569;
  max-width: 68ch;
}

.aurum-highlights {
  display: grid;
  gap: 14px;
  margin: clamp(18px, 3vw, 28px) 0 0 0;
  padding: 0;
  list-style: none;
}

.aurum-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: #ffffff;
  border: 1px solid #e6ecf5;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.05);
  animation: aurumRise 0.6s ease both;
}

.aurum-point:nth-child(1){animation-delay:.05s}
.aurum-point:nth-child(2){animation-delay:.1s}
.aurum-point:nth-child(3){animation-delay:.15s}

.aurum-badge {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
  border: 1px solid #dbe6ff;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.10) inset, 0 10px 18px rgba(2, 6, 23, 0.06);
  transform: translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.aurum-point:hover .aurum-badge {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.14) inset, 0 16px 24px rgba(2, 6, 23, 0.12);
}

.aurum-badge-icon {
  width: 20px;
  height: 20px;
  color: #1d4ed8;
}

.aurum-point-title {
  margin: 0;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 800;
  color: #0b1220;
}

.aurum-point-text {
  margin: 2px 0 0 0;
  font-size: clamp(13px, 1.9vw, 16px);
  color: #475569;
  line-height: 1.6;
}

.aurum-policy {
  margin-top: clamp(18px, 3vw, 28px);
  background: #ffffff;
  border: 1px solid #e6ecf5;
  border-radius: 14px;
  padding: clamp(14px, 2.4vw, 18px);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.05);
}

.aurum-policy-title {
  margin: 0 0 6px 0;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 800;
  color: #0b1220;
}

.aurum-policy-text {
  margin: 0;
  font-size: clamp(13px, 1.9vw, 16px);
  color: #475569;
  line-height: 1.7;
}

.aurum-policy-link {
  color: #1d4ed8;
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 78, 216, 0.35);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.aurum-policy-link:hover {
  color: #0f3fb5;
  border-color: rgba(15, 63, 181, 0.6);
}

.aurum-panel {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #e3ebf7;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.10), 0 0 0 1px rgba(255,255,255,0.6) inset;
  padding: clamp(18px, 3vw, 26px);
  animation: aurumCard 0.7s ease 0.1s both;
  overflow: hidden;
  isolation: isolate;
}

.aurum-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: conic-gradient(from 0deg, rgba(29,78,216,0.10), rgba(16,185,129,0.10), rgba(59,130,246,0.10), rgba(29,78,216,0.10));
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.aurum-panel:hover::before { opacity: 1; }

.aurum-form {
  display: grid;
  gap: clamp(14px, 2.6vw, 20px);
}

.aurum-field {
  display: grid;
  gap: 8px;
}

.aurum-label {
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 600;
  color: #334155;
}

.aurum-input,
.aurum-textarea {
  width: 100%;
  font-size: clamp(14px, 1.9vw, 16px);
  color: #0b1220;
  background: #ffffff;
  border: 1px solid #d7e1ee;
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.12s ease;
}

.aurum-input:focus,
.aurum-textarea:focus {
  outline: none;
  border-color: #1d4ed8;
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.15);
}

.aurum-textarea { resize: vertical; min-height: 120px; }

.aurum-consent {
  margin: 2px 0 0 0;
  font-size: clamp(12px, 1.6vw, 14px);
  color: #64748b;
  line-height: 1.6;
  text-align: left;
}

.aurum-consent-link {
  color: #1d4ed8;
  text-decoration: none;
  border-bottom: 1px dashed rgba(29, 78, 216, 0.4);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.aurum-consent-link:hover {
  color: #0f3fb5;
  border-color: rgba(15, 63, 181, 0.6);
}

.aurum-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 800;
  color: #0b1220;
  background: linear-gradient(180deg, #e6f0ff 0%, #cfe1ff 100%);
  border: 1px solid #b7ccff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(99, 132, 255, 0.25), 0 2px 0 rgba(11, 18, 32, 0.18) inset;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.aurum-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(99, 132, 255, 0.32), 0 2px 0 rgba(11, 18, 32, 0.22) inset;
}

.aurum-submit:active { transform: translateY(0); }

.aurum-submit:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 3px;
}

.aurum-submit-icon {
  width: 18px;
  height: 18px;
}

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

@keyframes aurumUnderline {
  to { width: 140px; }
}

@keyframes aurumRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes aurumCard {
  from { opacity: 0; transform: translateY(22px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
  .aurum-title { font-size: clamp(22px, 7vw, 30px); }
  .aurum-panel { padding: clamp(16px, 5vw, 22px); }
  .aurum-submit { font-size: 15px; }
}


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

.solenne-footer {
  position: relative;
  padding: clamp(64px, 12vh, 132px) 0;
  background:
    radial-gradient(1000px 320px at 12% -12%, rgba(29,78,216,0.08), transparent 60%),
    radial-gradient(1000px 320px at 88% -14%, rgba(16,185,129,0.08), transparent 60%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 50%, #f6f9ff 100%);
  overflow: hidden;
}

.solenne-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, #1d4ed8, #10b981, #2563eb);
  opacity: 0.6;
}

.solenne-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 28px);
  align-items: center;
  margin-bottom: clamp(24px, 4vw, 40px);
  animation: solenneFade 0.6s ease both;
}

@media (min-width: 900px) {
  .solenne-band {
    grid-template-columns: 1fr auto;
  }
}

.solenne-brandblock {
  display: grid;
  gap: 6px;
}

.solenne-footertitle {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  letter-spacing: .01em;
  color: #0b1220;
}

.solenne-copy {
  margin: 0;
  font-size: clamp(12px, 1.6vw, 14px);
  color: #64748b;
}

.solenne-nav {
  justify-self: end;
}

.solenne-navlist {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr;
  gap: 10px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .solenne-navlist {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    align-items: center;
  }
}

.solenne-navitem {
  animation: solenneRise 0.5s ease both;
}

.solenne-navitem:nth-child(1){animation-delay:.05s}
.solenne-navitem:nth-child(2){animation-delay:.1s}
.solenne-navitem:nth-child(3){animation-delay:.15s}
.solenne-navitem:nth-child(4){animation-delay:.2s}

.solenne-navlink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 1.7vw, 15px);
  color: #334155;
  text-decoration: none;
  padding: 6px 2px;
  transition: color .25s ease, transform .25s ease;
}

.solenne-navlink:focus { outline: none; }

.solenne-navlink:focus-visible {
  box-shadow: 0 2px 0 0 #1d4ed8;
}

.solenne-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9cb5ff;
  box-shadow: 0 0 0 2px rgba(156,181,255,.25);
  transition: transform .25s ease, background-color .25s ease;
}

.solenne-navlink:hover .solenne-dot {
  transform: scale(1.25);
  background-color: #1d4ed8;
}

.solenne-navlink:hover {
  color: #0f3fb5;
  transform: translateY(-1px);
}

.solenne-disclaimer {
  animation: solenneCardIn 0.6s ease .15s both;
}

.solenne-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e3ebf7;
  border-radius: 20px;
  padding: clamp(18px, 3vw, 24px);
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.08), 0 0 0 1px rgba(255,255,255,0.6) inset;
  overflow: hidden;
  isolation: isolate;
}

.solenne-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: conic-gradient(from 0deg, rgba(29,78,216,.10), rgba(16,185,129,.10), rgba(59,130,246,.10), rgba(29,78,216,.10));
  filter: blur(26px);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: -1;
}

.solenne-card:hover::before { opacity: 1; }

.solenne-cardhead {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.solenne-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(180deg,#eef4ff 0%, #ffffff 100%);
  border: 1px solid #dbe6ff;
  box-shadow: 0 10px 22px rgba(37,99,235,.12) inset, 0 10px 20px rgba(2,6,23,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.solenne-card:hover .solenne-badge {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37,99,235,.16) inset, 0 16px 28px rgba(2,6,23,.12);
}

.solenne-badgeicon {
  width: 22px;
  height: 22px;
  color: #1d4ed8;
}

.solenne-cardtitle {
  margin: 0;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 800;
  color: #0b1220;
  letter-spacing: .01em;
}

.solenne-text {
  margin: 8px 0 0 0;
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 1.75;
  color: #475569;
}

.solenne-link {
  color: #1d4ed8;
  text-decoration: none;
  border-bottom: 1px solid rgba(29,78,216,.35);
  transition: color .25s ease, border-color .25s ease;
}

.solenne-link:hover {
  color: #0f3fb5;
  border-color: rgba(15,63,181,.6);
}

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

@keyframes solenneRise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes solenneCardIn {
  from { opacity: 0; transform: translateY(22px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
  .solenne-navlist { gap: 10px; }
  .solenne-card { padding: clamp(16px, 5vw, 20px); }
  .solenne-footertitle { font-size: clamp(16px, 6vw, 20px); }
}

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