@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Playfair+Display:wght@600&display=swap";
@import "https://fonts.googleapis.com/css2?family=Inter:wght@500;700&family=Libre+Baskerville:wght@700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Playfair+Display:wght@700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Libre+Baskerville:wght@700&display=swap";
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: none;
}
img {
  display: block;
  max-width: 100%;
}


/* 22222222 */
.executive-header {
  width: 100%;
  background: linear-gradient(90deg, #0f172a, #1e293b);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background 0.5s ease;
  position: relative; /* Ensure header establishes a stacking context */
  z-index: 1000; /* Set a base z-index for the header */
}
.executive-header:hover {
  background: linear-gradient(90deg, #1e293b, #334155);
}
.header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}
@media screen and (min-width: 1280px) {
  .header_container {
    padding: 20px 120px;
  }
}
.corporate-logo {
  display: flex;
  align-items: center;
  position: relative;
  gap: 5px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.corporate-logo img {
  width: 100%;
  height: 100%;
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
  filter: brightness(1.2);
  transition: filter 0.3s ease;
}
.corporate-logo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.corporate-logo:hover {
  transform: scale(1.05);
}
.corporate-logo:hover:before {
  
}
@media screen and (min-width: 1280px) {
  .corporate-logo {
    width: 64px;
    height: 64px;
  }
}
.executive-nav {
  display: none;
}
@media screen and (min-width: 1280px) {
  .executive-nav {
    display: flex;
    align-items: center;
  }
}
.executive-nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
}
.executive-nav-item {
  position: relative;
  padding: 8px 16px;
  transition: transform 0.3s ease;
}
.executive-nav-item a {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #e2e8f0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.executive-nav-item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #a855f7);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.executive-nav-item:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}
.executive-nav-item:hover a {
  color: #fff;
}
.mobile-nav-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(45deg, #2563eb, #7c3aed);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mobile-nav-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px #3b82f680;
}
.mobile-nav-trigger img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(1.5);
}
@media screen and (min-width: 1280px) {
  .mobile-nav-trigger {
    display: none;
  }
}
.responsive-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  box-shadow: -4px 0 20px #0006;
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000; /* Increased z-index to ensure menu is above all content */
}
.responsive-nav.is-open {
  right: 0;
  opacity: 1;
  pointer-events: auto;
}
.responsive-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
}
.responsive-nav-item {
  position: relative;
  padding: 16px 32px;
  background: linear-gradient(45deg, #2563eb, #7c3aed);
  border-radius: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.3s ease;
}
.responsive-nav.is-open .responsive-nav-item {
  transform: translateY(0);
  opacity: 1;
}
.responsive-nav-item:nth-child(1) {
  transition-delay: 0.1s;
}
.responsive-nav-item:nth-child(2) {
  transition-delay: 0.2s;
}
.responsive-nav-item:nth-child(3) {
  transition-delay: 0.3s;
}
.responsive-nav-item a {
  font-family: Playfair Display, serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.responsive-nav-item:hover {
  box-shadow: 0 6px 15px #3b82f666;
  transform: translateY(-4px);
}
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1999; /* Set z-index below menu but above other content */
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 1280px) {
  .responsive-nav,
  .nav-overlay {
    display: none;
  }
}

/* Ensure other sections have a lower z-index if positioned */
section {
  position: relative;
  z-index: 1; /* Explicitly set low z-index for sections */
}

/* 11111111111111 */
.footer {
  width: 100%;
  background: linear-gradient(180deg, #111827, #1f2a44);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top center,
    rgba(59, 130, 246, 0.15),
    transparent 70%
  );

  animation: primeGlow 5s ease-in-out infinite;
}
@keyframes primeGlow {
  0% {
    opacity: 0.25;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.05);
  }
  to {
    opacity: 0.25;
    transform: scale(1);
  }
}
.footer_container {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 40px 24px;
}
@media screen and (min-width: 1280px) {
  .footer_container {
    padding: 72px 120px;
    gap: 64px;
  }
}
.prime-disclaimer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .prime-disclaimer {
    text-align: left;
  }
}
.prime-disclaimer-text {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #d1d5db;
  line-height: 1.7;
  animation: textSlideIn 1s ease-out;
}
@media screen and (min-width: 1280px) {
  .prime-disclaimer-text {
    font-size: 16px;
  }
}
@keyframes textSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.prime-links {
  width: 100%;
}
.prime-links-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  list-style: none;
}
@media screen and (min-width: 1280px) {
  .prime-links-list {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}
.prime-link-item a {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #93c5fd;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.prime-link-item a:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: width 0.3s ease;
}
.prime-link-item a:hover:after {
  width: 100%;
}
.prime-link-item a:hover {
  color: #fff;
}
@media screen and (min-width: 1280px) {
  .prime-link-item a {
    font-size: 16px;
  }
}
.affiliate-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  box-shadow: 0 4px 20px #0000004d;
  animation: partnersSlideIn 1.2s ease-out;
}
@keyframes partnersSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 1280px) {
  .affiliate-partners {
    gap: 32px;
    padding: 28px;
  }
}
.affiliate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.affiliate-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px #3b82f64d;
}
.badge-elite {
  width: 100px;
  height: 60px;
  background: linear-gradient(45deg, #2563eb, #7c3aed);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.5);
}
.badge-elite img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.badge-silver-tone {
  background: linear-gradient(45deg, #6b7280, #9ca3af);
}
.badge-silver-tone img {
  filter: brightness(1.1);
}
.badge-mini {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.5);
}
.badge-mini img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
@media screen and (min-width: 1280px) {
  .badge-elite {
    width: 120px;
    height: 70px;
  }
  .badge-mini {
    width: 56px;
    height: 56px;
  }
}
.prime-copyright {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #d1d5db;
  text-align: center;
  animation: textSlideIn 1s ease-out 0.2s forwards;
}
@media screen and (min-width: 1280px) {
  .prime-copyright {
    font-size: 16px;
  }
}
.page-margin {
  margin-bottom: 32px;
}
.page-margin-2 {
  margin-bottom: 16px;
}
.page-margin-8,
.page-margin-24 {
  margin-bottom: 8px;
}
.h3-uppercase {
  text-transform: uppercase;
}
.page-text-bold {
  font-weight: 600;
}
.page-text {
  line-height: 1.57143;
}
@media screen and (min-width: 1280px) {
  .page-text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.page-simple-list {
  list-style: disc;
  padding-left: 20px;
}
.page-simple-link {
  line-height: 1.57143;
  color: #0059ff;
}
@media screen and (min-width: 1280px) {
  .page-simple-link {
    font-size: 16px;
    line-height: 1.5;
  }
}
.page-title-h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.55556;
}
@media screen and (min-width: 1280px) {
  .page-title-h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}
.page-title {
  font-family: Nunito, sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  font-size: 24px;
  margin: 116px auto 40px;
}
@media screen and (min-width: 1280px) {
  .page-title {
    font-size: 28px;
    line-height: 1.57143;
    margin-top: 189px;
  }
}
.page-content {
  padding: 0 16px 60px;
}
@media screen and (min-width: 1280px) {
  .page-content {
    padding: 0 212px 120px;
  }
}
.prestige-faq {
  scroll-margin-top: 80px;
  width: 100%;
  background: linear-gradient(170deg, #111827, #1f2a44);
  padding: 14px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.prestige-faq:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top left,
    rgba(59, 130, 246, 0.15),
    transparent 70%
  );

  animation: subtleGlow 6s ease-in-out infinite;
}
.faq_container {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 48px 24px;
}
@media screen and (min-width: 1280px) {
  .faq_container {
    padding: 80px 120px;
    gap: 56px;
  }
}
.prestige-faq-title {
  font-family: Libre Baskerville, serif;
  font-size: 32px;
  font-weight: 700;
  color: #f3f4f6;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
  animation: fadeInTitle 1s ease-out;
}
.prestige-faq-title:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translate(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  animation: expandLine 1.2s ease-out 0.3s forwards;
}
@media screen and (max-width: 1279px) {
  .prestige-faq-title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1280px) {
  .prestige-faq-title {
    font-size: 40px;
  }
}
@keyframes fadeInTitle {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expandLine {
  0% {
    transform: translate(-50%) scaleX(0);
  }
  to {
    transform: translate(-50%) scaleX(1);
  }
}
.prestige-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 900px;
}
@media screen and (min-width: 1280px) {
  .prestige-faq-list {
    gap: 28px;
  }
}
.prestige-faq-item {
  background: linear-gradient(135deg, #1e293b, #2d3748);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px #0000004d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prestige-faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px #3b82f64d;
}
.faq-question-button-js {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.prestige-faq-question {
  width: 100%;
  padding: 20px 24px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #e2e8f0;
  text-align: left;
  background: linear-gradient(90deg, #2d3748, #374151);
  transition: background 0.3s ease, color 0.3s ease;
}
.faq-question-button-js:hover .prestige-faq-question {
  background: linear-gradient(90deg, #374151, #4b5563);
  color: #fff;
}
@media screen and (min-width: 1280px) {
  .prestige-faq-question {
    font-size: 18px;
    padding: 24px 32px;
  }
}
.prestige-faq-answer {
  max-height: 0;
  overflow: hidden;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.6;
  padding: 0 24px;
  background: #1e293b;
  transition: max-height 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    padding 0.5s ease;
}
.prestige-faq-answer.open {
  max-height: 300px;
  padding: 20px 24px;
}
@media screen and (min-width: 1280px) {
  .prestige-faq-answer {
    font-size: 16px;
  }
  .prestige-faq-answer.open {
    padding: 24px 32px;
  }
}
.luxury-selection {
  scroll-margin-top: 80px;
  width: 100%;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  padding: 22px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.luxury-selection:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(59, 130, 246, 0.2),
    transparent 70%
  );
  z-index: 0;
  animation: elegantGlow 5s ease-in-out infinite;
}
@keyframes elegantGlow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.03);
  }
  to {
    opacity: 0.3;
    transform: scale(1);
  }
}
.cards_container {
  position: relative;

  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media screen and (min-width: 1280px) {
  .cards_container {
    padding: 56px 120px;
  }
}
.premium-collection {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .premium-collection {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.elite-offer {
  position: relative;
  background: linear-gradient(135deg, #1e293b, #2d3748);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 6px 20px #0000004d;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  animation: cardSlideUp 0.6s ease-out;
}
@media screen and (min-width: 1280px) {
  .elite-offer {
    padding: 40px;
  }
}
.elite-offer:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px #3b82f64d;
}
@keyframes cardSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tier-marker {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Libre Baskerville, serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 10px #0006;
  transition: transform 0.3s ease;
}
.elite-offer:hover .tier-marker {
  transform: scale(1.1);
}
@media screen and (min-width: 1280px) {
  .tier-marker {
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
}
.brand-showcase {
  width: 100%;
  max-width: 180px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.brand-visual {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.brand-showcase:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.elite-offer:hover .brand-visual {
  transform: scale(1.05);
}
.elite-offer:hover .brand-showcase:before {
  opacity: 1;
}
@media screen and (min-width: 1280px) {
  .brand-showcase {
    max-width: 220px;
  }
}
.offer-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 280px;
}
.rating-indicator {
  max-width: 90px;
  padding: 6px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 6px;
  transition: transform 0.3s ease;
}
.elite-offer:hover .rating-indicator {
  transform: scale(1.08);
}
.offer-highlight {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #e2e8f0;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 1280px) {
  .offer-details {
    align-items: flex-start;
  }
  .offer-highlight {
    font-size: 18px;
    text-align: left;
  }
}
.advantage-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
}
.advantage-point {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #d1d5db;
  position: relative;
  padding-left: 24px;
}
.advantage-point:before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-size: 12px;
}
@media screen and (min-width: 1280px) {
  .advantage-point {
    font-size: 15px;
  }
}
.transaction-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  max-width: 240px;
}
.payment-symbol {
  min-width: 56px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.payment-symbol:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}
@media screen and (min-width: 1280px) {
  .transaction-methods {
    max-width: 280px;
  }
  .payment-symbol {
    min-width: 56px;
  }
}
.secure-offer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 50px;
  background: linear-gradient(45deg, #2563eb, #7c3aed);
  border-radius: 10px;
  text-decoration: none;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.secure-offer-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}
.secure-offer-link:hover:before {
  left: 100%;
}
.secure-offer-link:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px #3b82f666;
}

@media screen and (min-width: 1280px) {
  .secure-offer-link {
    width: 200px;
    height: 54px;
    font-size: 17px;
  }
}
.hero {
  background-image: linear-gradient(90deg, #000000a3, #0d1521b7, #070e18a5),
    url(/assets/h1-22cc0f01.webp);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  width: 100%;
  padding-top: 125px;
  padding-bottom: 40px;
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
}
.hero_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0 14px;
}
@media screen and (min-width: 1440px) {
  .hero_container {
    padding: 0 80px;
  }
}
.hero_container h1 {
  color: #fff;
  font-size: 38px;
  text-align: center;
  margin-bottom: 20px;
  max-width: 600px;
}
@media screen and (max-width: 1440px) {
  .hero_container h1 {
    font-size: 34px;
  }
}
.hero_container p {
  color: #fff;
  text-align: center;
  font-size: 24px;
  max-width: 600px;
}
@media screen and (max-width: 1440px) {
  .hero_container p {
    font-size: 20px;
  }
}
.prestige-rating {
  width: 100%;
  background: linear-gradient(145deg, #111827, #1f2a44);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.prestige-rating:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at bottom left,
    rgba(59, 130, 246, 0.2),
    transparent 70%
  );
  z-index: 0;
  animation: pulseGlow 5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
  to {
    opacity: 0.3;
    transform: scale(1);
  }
}
.rating_container {
  position: relative;
  padding: 40px 24px;
}
@media screen and (max-width: 1279px) {
  .rating_container {
    padding: 32px 16px;
  }
}
@media screen and (min-width: 1280px) {
  .rating_container {
    padding: 64px 120px;
  }
}
.prestige-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 1279px) {
  .prestige-content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
.prestige-text-block {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1280px) {
  .prestige-text-block {
    max-width: 650px;
  }
}
.prestige-headline {
  font-family: Libre Baskerville, serif;
  font-size: 36px;
  font-weight: 700;
  color: #f3f4f6;
  letter-spacing: 0.5px;
  position: relative;
  text-transform: capitalize;
  animation: fadeSlideUp 1s ease-out;
}
.prestige-headline:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineExpand 1.2s ease-out 0.3s forwards;
}
@media screen and (max-width: 1279px) {
  .prestige-headline {
    font-size: 28px;
    text-align: center;
  }
}
@media screen and (min-width: 1280px) {
  .prestige-headline {
    font-size: 44px;
  }
}
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes underlineExpand {
  0% {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.prestige-subtext {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #d1d5db;
  line-height: 1.7;
  max-width: 500px;
  animation: fadeSlideUp 1s ease-out 0.2s forwards;
}
@media screen and (max-width: 1279px) {
  .prestige-subtext {
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .prestige-subtext {
    font-size: 18px;
    max-width: 600px;
  }
}
.prestige-visual-block {
  position: relative;
  max-width: 550px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.prestige-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px #3b82f633;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.prestige-visual-block:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(
    45deg,
    rgba(59, 130, 246, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.prestige-visual-block:hover {
  transform: translateY(-8px);
}
.prestige-visual-block:hover .prestige-image {
  box-shadow: 0 12px 32px #3b82f64d;
}
.prestige-visual-block:hover:before {
  opacity: 1;
}
@media screen and (max-width: 1279px) {
  .prestige-visual-block {
    max-width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .prestige-visual-block {
    max-width: 650px;
  }
}
.executive-insight {
  scroll-margin-top: 80px;
  width: 100%;
  background: linear-gradient(165deg, #0f172a, #1e293b);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.executive-insight:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at bottom right,
    rgba(59, 130, 246, 0.15),
    transparent 70%
  );
  z-index: 0;
  animation: refinedPulse 5s ease-in-out infinite;
}
@keyframes refinedPulse {
  0% {
    opacity: 0.25;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.05);
  }
  to {
    opacity: 0.25;
    transform: scale(1);
  }
}
.info-block_container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px 24px;
}
@media screen and (min-width: 1280px) {
  .info-block_container {
    padding: 80px 120px;
    flex-direction: row;
    gap: 48px;
  }
}
.insight-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 600px;
}
@media screen and (min-width: 1280px) {
  .insight-content {
    align-items: flex-start;
    max-width: 50%;
  }
}
.executive-title {
  font-family: Libre Baskerville, serif;
  font-size: 32px;
  font-weight: 700;
  color: #f3f4f6;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
  animation: slideInTitle 1s ease-out;
}
.executive-title:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translate(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transform-origin: center;
  animation: expandUnderline 1.2s ease-out 0.3s forwards;
}
@media screen and (max-width: 1279px) {
  .executive-title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1280px) {
  .executive-title {
    font-size: 40px;
    text-align: left;
  }
}
@keyframes slideInTitle {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expandUnderline {
  0% {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.executive-subtitle {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #d1d5db;
  text-align: center;
  max-width: 700px;
  animation: slideInSubtitle 1.1s ease-out 0.2s forwards;
  opacity: 0;
}
@media screen and (max-width: 1279px) {
  .executive-subtitle {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .executive-subtitle {
    font-size: 24px;
    text-align: left;
  }
}
@keyframes slideInSubtitle {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.executive-description {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #d1d5db;
  text-align: center;
  line-height: 1.7;
  max-width: 600px;
  animation: slideInText 1.3s ease-out 0.4s forwards;
  opacity: 0;
}
@media screen and (max-width: 1279px) {
  .executive-description {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .executive-description {
    font-size: 18px;
    text-align: left;
    max-width: 800px;
  }
}
@keyframes slideInText {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.insight-visual {
  max-width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.visual-media {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.insight-visual:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.insight-visual:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px #3b82f64d;
}
.insight-visual:hover:before {
  opacity: 1;
}
@media screen and (min-width: 1280px) {
  .insight-visual {
    max-width: 50%;
    max-height: 500px;
  }
}
.luxury-cookies-panel {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  background: linear-gradient(90deg, #1c0e2f, #3c2f5f);
  box-shadow: 0 -6px 24px #ffd7004d;
  overflow: hidden;
  isolation: isolate;
}
.luxury-cookies-panel:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at bottom center,
    rgba(255, 215, 0, 0.2),
    transparent 70%
  );
  z-index: 0;
  animation: luxeGlow 4s ease-in-out infinite;
}
@keyframes luxeGlow {
  0% {
    opacity: 0.25;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.03);
  }
  to {
    opacity: 0.25;
    transform: scale(1);
  }
}
.cookies-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 16px;
}
@media screen and (min-width: 1280px) {
  .cookies-container {
    padding: 32px 80px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }
}
.cookies-statement {
  max-width: 100%;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .cookies-statement {
    max-width: 50%;
    text-align: left;
  }
}
.luxury-cookies-message {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.6;
  animation: messageFadeIn 1s ease-out;
}
@media screen and (min-width: 1280px) {
  .luxury-cookies-message {
    font-size: 16px;
  }
}
@keyframes messageFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cookies-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 280px;
}
@media screen and (min-width: 1280px) {
  .cookies-actions {
    flex-direction: row;
    gap: 20px;
    width: auto;
  }
}
.cookies-accept-js {
  background: linear-gradient(45deg, #d4a017, #ffd700);
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-family: Playfair Display, serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a0b2e;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cookies-accept-js:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.4s ease;
}
.cookies-accept-js:hover:before {
  left: 100%;
}
.cookies-accept-js:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px #ffd70066;
}
@media screen and (min-width: 1280px) {
  .cookies-accept-js {
    font-size: 15px;
    padding: 14px 28px;
  }
}
.cookies-decline-js {
  background: linear-gradient(45deg, #b91c1c, #dc2626);
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-family: Playfair Display, serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cookies-decline-js:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.4s ease;
}
.cookies-decline-js:hover:before {
  left: 100%;
}
.cookies-decline-js:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px #ef444466;
}
@media screen and (min-width: 1280px) {
  .cookies-decline-js {
    font-size: 15px;
    padding: 14px 28px;
  }
}
.guild-vault {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #2e1a4d, #4a3c6f);
  border-radius: 12px;
  border: 2px solid #d4a017;
  box-shadow: 0 4px 16px #ffd70040;
  animation: vaultFadeIn 1.3s ease-out;
}
@media screen and (min-width: 1280px) {
  .guild-vault {
    gap: 20px;
    padding: 20px;
  }
}
@keyframes vaultFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vault-partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vault-partner:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px #ffd70080;
}
.badge-luxe {
  width: 80px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #b8860b);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ffd700;
}
.badge-luxe img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.badge-velvet {
  background: linear-gradient(45deg, #7c3aed, #a855f7);
}
.badge-velvet img {
  filter: brightness(1.2);
}
.badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  border: 1px solid #d4a017;
}
.badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
@media screen and (min-width: 1280px) {
  .badge-luxe {
    width: 100px;
    height: 60px;
  }
  .badge-icon {
    width: 48px;
    height: 48px;
  }
}
.prime-about {
  width: 100%;
  background: linear-gradient(160deg, #111827, #1f2a44);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.prime-about:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at bottom left,
    rgba(59, 130, 246, 0.15),
    transparent 70%
  );
  z-index: 0;
  animation: subtleGlow 5s ease-in-out infinite;
}
@keyframes subtleGlow {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.05);
  }
  to {
    opacity: 0.2;
    transform: scale(1);
  }
}
.about-info_container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px 24px;
}
@media screen and (min-width: 1280px) {
  .about-info_container {
    padding: 80px 120px;
    gap: 48px;
  }
}
.about-header {
  text-align: center;
}
.prime-about-title {
  font-family: Libre Baskerville, serif;
  font-size: 36px;
  font-weight: 700;
  color: #f3f4f6;
  letter-spacing: 0.5px;
  position: relative;
  animation: titleSlideIn 1s ease-out;
}
.prime-about-title:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translate(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  animation: expandUnderline 1.2s ease-out 0.3s forwards;
}
@media screen and (max-width: 1279px) {
  .prime-about-title {
    font-size: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .prime-about-title {
    font-size: 44px;
  }
}
@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expandUnderline {
  0% {
    transform: translate(-50%) scaleX(0);
  }
  to {
    transform: translate(-50%) scaleX(1);
  }
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
}
.prime-about-text {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #d1d5db;
  line-height: 1.7;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 16px #0000004d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: textSlideIn 1s ease-out;
}
.prime-about-text:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px #3b82f64d;
}
.prime-about-text:nth-child(1) {
  animation-delay: 0.1s;
}
.prime-about-text:nth-child(2) {
  animation-delay: 0.2s;
}
.prime-about-text:nth-child(3) {
  animation-delay: 0.3s;
}
.prime-about-text:nth-child(4) {
  animation-delay: 0.4s;
}
.prime-about-text:nth-child(5) {
  animation-delay: 0.5s;
}
.prime-about-text:nth-child(6) {
  animation-delay: 0.6s;
}
.prime-about-text:nth-child(7) {
  animation-delay: 0.7s;
}
@media screen and (max-width: 1279px) {
  .prime-about-text {
    font-size: 14px;
    padding: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .prime-about-text {
    font-size: 18px;
    padding: 24px;
    text-align: left;
  }
}
@keyframes textSlideIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.boxes {
  position: relative;
  margin-left: -30px;
  margin-right: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-size: 100% 1%;
  background-position: top;
  animation: bgAnimate 6s infinite alternate-reverse ease-in-out;
  padding-top: 2px;
}
@media screen and (max-width: 1440px) {
  .boxes {
    height: 100vh;
    overflow: hidden;
  }
}
@keyframes bgAnimate {
  0% {
    background-size: 100% 1%;
  }
  to {
    background-size: 100% 150%;
  }
}
.box {
  width: calc((100% - 78px) / 40);
  aspect-ratio: 1;
  background-color: #2a2a2a;
  transition: background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 1400px) {
  .box {
    width: calc((100% - 57px) / 20);
  }
}
@media screen and (max-width: 480px) {
  .box {
    width: calc((100% - (10 * 3px)) / 11);
  }
}
.box.active {
  background: -webkit-linear-gradient(90deg, #373054, #33299c, #0f08e6);
  background: linear-gradient(90deg, #373054, #33299c, #0f08e6);
}
.form-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: -webkit-linear-gradient(90deg, #eae6ff, #f4f4f4);
  background: linear-gradient(90deg, #eae6ff, #f4f4f4);
  box-shadow: #06182c66 0 0 0 2px, #06182ca6 0 4px 6px -1px,
    #ffffff14 0 1px inset;
  padding: 20px;
  box-shadow: 0 0 10px #0000001a;
  min-width: 800px;
}
@media screen and (max-width: 1440px) {
  .form-container {
    min-width: 300px;
  }
}
label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #161616;
}
input,
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
textarea {
  height: 100px;
  resize: vertical;
}
input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}
.btn-2 {
  text-align: center;
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #fff;
  cursor: pointer;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  margin: 0 20px;
}
.btn-2:before {
  content: "";
  position: absolute;
  height: 11px;
  width: 100%;
  background: #fff;
  left: 0;
  top: 0;
  transition: all 0.3s;
  opacity: 0.3;
}
.btn-2:hover:before {
  top: 77%;
}
textarea {
  resize: none;
}
:root {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #121212;
  background: -webkit-linear-gradient(90deg, #405758, #5e787b, #405758);
  background: linear-gradient(90deg, #405758, #5e787b, #405758);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
.container {
  max-width: 375px;
  min-width: 320px;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.page-section {
  background-color: #fff;
  padding-top: 100px;
}
body {
  overflow-x: hidden !important;
}
@media screen and (max-width:768px){
  .prestige-image {
    display: none !important;
  }
}

