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


/* 1 */
.risk-disclosure-panel {
  background-color: #f8f9fa;
  border-top: 3px solid #c5a35f;
  border-bottom: 3px solid #c5a35f;
  padding: 25px 0;
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.risk-disclosure-panel::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 163, 95, 0.1) 0%, transparent 70%);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.6s ease, bottom 0.6s ease;
  z-index: 0;
}

.risk-disclosure-panel:hover::after {
  opacity: 1;
  bottom: -30%;
}

.risk-wrapper {
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
  animation: elegantScaleIn 1s ease-out forwards 0.2s;
}

.risk-disclosure-panel:hover .risk-wrapper {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.risk-message {
  color: #333333;
  font-size: clamp(14px, 1.7vw, 16px);
  font-family: 'Georgia', serif;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.risk-message .highlight {
  font-style: normal;
  font-weight: 700;
  color: #c5a35f;
  transition: color 0.3s ease;
}

.risk-message .disclaimer-link {
  color: #0056b3;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
  background-image: linear-gradient(transparent 50%, #0056b3 50%);
  background-size: 0 200%;
  transition: background-size 0.3s ease, color 0.3s ease;
}

.risk-message .disclaimer-link:hover {
  color: #003d82;
  background-size: 100% 200%;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .risk-wrapper {
    max-width: 95%;
    padding: 12px 15px;
  }

  .risk-message {
    font-size: clamp(12px, 1.5vw, 14px);
    text-align: left;
  }
}

/* header */

.executive-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.executive-header:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 30px);
  animation: elegantFadeIn 1s ease-out;
}

.corporate-logo {
  max-width: 60px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.corporate-logo:hover {
  transform: rotate(5deg) scale(1.1);
  opacity: 0.9;
}

.corporate-logo__image {
  width: 100%;
  height: auto;
}

.desktop-navigation {
  display: none;
}

@media screen and (min-width: 1200px) {
  .desktop-navigation {
    display: block;
  }
}

.desktop-navigation__items {
  display: flex;
  align-items: center;
  gap: clamp(25px, 3.5vw, 35px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-navigation__anchor {
  color: #e2e8f0;
  text-decoration: none;
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.desktop-navigation__anchor::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c084fc, #60a5fa);
  transition: width 0.4s ease;
}

.desktop-navigation__anchor:hover {
  color: #ffffff;
}

.desktop-navigation__anchor:hover::after {
  width: 100%;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 25px);
}

.initiate-button {
  padding: 12px 25px;
  background: linear-gradient(90deg, #c5a35f 0%, #a07c3e 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.initiate-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;
}

.initiate-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.initiate-button:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

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

.menu-toggle__line {
  width: 100%;
  height: 3px;
  background-color: #e2e8f0;
  transition: all 0.4s ease;
  border-radius: 2px;
}

.menu-toggle.active .menu-toggle__line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-toggle__line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

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

/* Mobile Sidebar Styles */
.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mobile-sidebar.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.mobile-sidebar__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.mobile-sidebar__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 40px 20px;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  box-shadow: -10px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-sidebar.active .mobile-sidebar__content {
  transform: translateX(0);
}

.mobile-sidebar__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-sidebar__close-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #e2e8f0;
  transition: transform 0.4s ease;
}

.mobile-sidebar__close-line:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-sidebar__close-line:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 60px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-sidebar__link {
  color: #e2e8f0;
  text-decoration: none;
  font-size: clamp(18px, 3.5vw, 22px);
  font-weight: 500;
  display: block;
  position: relative;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.mobile-sidebar.active .mobile-sidebar__link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-sidebar__link:hover {
  color: #ffffff;
}

.mobile-sidebar__link::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  width: 5px;
  height: 5px;
  background: #60a5fa;
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-sidebar__link:hover::before {
  opacity: 1;
}

.mobile-sidebar__action {
  margin-top: 30px;
}

.mobile-sidebar__button {
  display: block;
  padding: 15px 30px;
  background: linear-gradient(90deg, #c5a35f 0%, #a07c3e 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 3vw, 18px);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mobile-sidebar__button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

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

/* Sequential animation for mobile links */
.mobile-sidebar.active .mobile-sidebar__item:nth-child(1) .mobile-sidebar__link {
  transition-delay: 0.1s;
}

.mobile-sidebar.active .mobile-sidebar__item:nth-child(2) .mobile-sidebar__link {
  transition-delay: 0.2s;
}

.mobile-sidebar.active .mobile-sidebar__item:nth-child(3) .mobile-sidebar__link {
  transition-delay: 0.3s;
}

.mobile-sidebar.active .mobile-sidebar__item:nth-child(4) .mobile-sidebar__link {
  transition-delay: 0.4s;
}

.mobile-sidebar.active .mobile-sidebar__item:nth-child(5) .mobile-sidebar__link {
  transition-delay: 0.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-layout {
    gap: 10px;
  }
  .initiate-button {
    padding: 10px 20px;
    font-size: clamp(13px, 1.7vw, 15px);
  }
  .corporate-logo {
    max-width: 50px;
  }
}

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

.prestige-gateway {
  padding: clamp(100px, 18vh, 180px) 0;
  background: url(../img/hero.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.05);
  transition: background 0.6s ease;
}

.prestige-gateway::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(197, 163, 95, 0.08) 0%, transparent 70%);
  opacity: 0.7;
  z-index: 0;
  transition: opacity 0.6s ease;
}

.prestige-gateway:hover::before {
  opacity: 1;
}

.gateway-wrapper {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: riseElegant 1.2s ease-out forwards;
}

.prestige-gateway:hover .gateway-wrapper {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gateway-headline {
  font-size: clamp(38px, 5.5vw, 58px);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.15;
  margin-bottom: 25px;
  text-align: center;
  opacity: 0;
  animation: textReveal 1s ease-out 0.3s forwards;
}

.gateway-overview {
  font-size: clamp(17px, 2.2vw, 21px);
  font-family: 'Georgia', serif;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 35px;
  text-align: center;
  opacity: 0;
  animation: textReveal 1s ease-out 0.5s forwards;
}

.gateway-initiate {
  display: block;
  max-width: 250px;
  margin: 0 auto;
  padding: 14px 32px;
  background: linear-gradient(90deg, #c5a35f 0%, #a07c3e 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  text-decoration: none;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: textReveal 1s ease-out 0.7s forwards;
  text-align: center;
}

.gateway-initiate::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.gateway-initiate:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(197, 163, 95, 0.3);
}

.gateway-initiate:hover::after {
  width: 300px;
  height: 300px;
}

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

@keyframes textReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gateway-wrapper {
    padding: 30px 20px;
  }
  .gateway-headline {
    font-size: clamp(30px, 7vw, 42px);
  }
  .gateway-overview {
    font-size: clamp(15px, 2.8vw, 19px);
  }
  .gateway-initiate {
    padding: 12px 28px;
    font-size: clamp(13px, 2.1vw, 15px);
    max-width: 200px;
  }
}

/* ------------rating----------------------- */

.elite-evaluation-panel {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  padding: clamp(30px, 6vw, 50px) 0;
  border-radius: 20px;
  margin: 20px auto 0;
  max-width: 1000px;
  position: relative;
  z-index: 5;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: box-shadow 0.5s ease;
}

.elite-evaluation-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(167, 139, 250, 0.1) 0%, transparent 60%);
  opacity: 0.6;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.elite-evaluation-panel:hover::before {
  opacity: 1;
}

.evaluation-cluster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(15px, 4vw, 25px);
  position: relative;
  z-index: 1;
}

.evaluation-unit {
  background: rgba(31, 41, 55, 0.8);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 12px;
  padding: clamp(15px, 4vw, 25px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
  animation: subtleZoomIn 0.9s ease-out forwards;
}

.evaluation-unit:hover {
  transform: scale(1.03);
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(31, 41, 55, 0.9);
}

.evaluation-unit:nth-child(1) { animation-delay: 0.15s; }
.evaluation-unit:nth-child(2) { animation-delay: 0.3s; }
.evaluation-unit:nth-child(3) { animation-delay: 0.45s; }
.evaluation-unit:nth-child(4) { animation-delay: 0.6s; }

.evaluation-crown {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.evaluation-emblem {
  height: clamp(24px, 3.5vw, 28px);
  transition: filter 0.3s ease;
}

.evaluation-unit:hover .evaluation-emblem {
  filter: brightness(1.2);
}

.evaluation-label {
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 600;
  color: #d1d5db;
  font-family: 'Arial', sans-serif;
}

.evaluation-core {
  display: flex;
  align-items: center;
  gap: 6px;
}

.evaluation-score {
  font-size: clamp(20px, 3.2vw, 26px);
  font-weight: 800;
  color: #a78bfa;
  margin-right: 10px;
}

.evaluation-stars {
  display: flex;
  gap: 4px;
}

.star-icon {
  width: clamp(16px, 2.2vw, 20px);
  height: clamp(16px, 2.2vw, 20px);
  display: inline-block;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cGF0aCBkPSJNMTIgMkwzIDVsNiA5LTEuNSA2IDYuNS0zLjUgNi41IDMuNS0xLjUtNiA2LTl6Ii8+PC9zdmc+') no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.star-icon.full {
  opacity: 1;
}

.star-icon.half {
  opacity: 0.5;
}

.evaluation-unit:hover .star-icon {
  transform: rotate(15deg);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .evaluation-cluster {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .evaluation-unit {
    padding: 15px;
  }
  .evaluation-score {
    font-size: clamp(18px, 4vw, 22px);
  }
  .star-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 360px) {
  .evaluation-cluster {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .evaluation-unit {
    padding: 12px;
  }
  .evaluation-label {
    font-size: 13px;
  }
}

/* ------------------------about------------------------------ */

.prestige-overview {
  padding: clamp(60px, 12vh, 100px) 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.prestige-overview::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 150%;
  height: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
  transform: translateX(-50%);
  opacity: 0.5;
  z-index: 0;
  transition: opacity 0.6s ease;
}

.prestige-overview:hover::after {
  opacity: 0.8;
}

.overview-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(30px, 4.5vw, 42px);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #e5e7eb;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: elegantRise 1s ease-out forwards;
}

.overview-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(25px, 4vw, 35px);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .overview-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .overview-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.overview-card {
  background: #1f2937;
  border-radius: 15px;
  padding: clamp(20px, 3vw, 25px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: cardReveal 1s ease-out forwards;
}

.overview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(167, 139, 250, 0.2);
}

.overview-card:nth-child(1) { animation-delay: 0.2s; }
.overview-card:nth-child(2) { animation-delay: 0.3s; }
.overview-card:nth-child(3) { animation-delay: 0.4s; }
.overview-card:nth-child(4) { animation-delay: 0.5s; }
.overview-card:nth-child(5) { animation-delay: 0.6s; }
.overview-card:nth-child(6) { animation-delay: 0.7s; }

.overview-visual {
  margin: 0 0 20px 0;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.visual-media {
  width: 100%;
  height: clamp(220px, 32vw, 260px);
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.overview-card:hover .visual-media {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.card-caption {
  font-size: clamp(21px, 2.3vw, 25px);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #d1d5db;
  margin-bottom: 15px;
  text-align: center;
}

.card-narrative {
  font-size: clamp(15px, 1.9vw, 17px);
  font-family: 'Georgia', serif;
  color: #9ca3af;
  line-height: 1.7;
  text-align: center;
}

.overview-engage {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  padding: 15px 30px;
  background: linear-gradient(90deg, #c5a35f 0%, #a07c3e 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
  text-decoration: none;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: elegantRise 1s ease-out 0.8s forwards;
  z-index: 900;
}

.overview-engage::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 300%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: top 0.7s ease;
}

.overview-engage:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(167, 139, 250, 0.3);
}

.overview-engage:hover::before {
  top: -100%;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .prestige-overview {
    padding: 50px 0;
  }
  .overview-title {
    font-size: clamp(26px, 5.5vw, 34px);
    margin-bottom: 40px;
  }
  .visual-media {
    height: clamp(200px, 40vw, 240px);
  }
  .card-caption {
    font-size: clamp(19px, 3vw, 23px);
  }
  .card-narrative {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  .overview-engage {
    padding: 12px 25px;
    font-size: clamp(14px, 2.5vw, 16px);
    max-width: 180px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .prestige-overview {
    padding: 40px 0;
  }
  .overview-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .overview-layout {
    gap: 15px;
    margin-bottom: 30px;
  }
  .overview-card {
    padding: 15px;
  }
  .visual-media {
    height: 180px;
  }
  .card-caption {
    font-size: 18px;
  }
  .card-narrative {
    font-size: 13px;
  }
  .overview-engage {
    padding: 10px 20px;
    font-size: 13px;
    max-width: 160px;
  }
}

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

.executive-instruments {
  padding: clamp(70px, 14vh, 120px) 0;
  background: linear-gradient(180deg, #f9fafb 0%, #e5e7eb 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.05);
  transition: background 0.6s ease;
}

.executive-instruments::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 163, 95, 0.1) 0%, transparent 70%);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.7s ease, top 0.7s ease;
}

.executive-instruments:hover::before {
  opacity: 1;
  top: -30%;
}

.instruments-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.header-title {
  font-size: clamp(32px, 4.8vw, 44px);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(25px);
  animation: titleAscend 1.1s ease-out forwards;
}

.header-subtitle {
  font-size: clamp(17px, 2.2vw, 21px);
  font-family: 'Georgia', serif;
  color: #4b5563;
  line-height: 1.65;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(25px);
  animation: titleAscend 1.1s ease-out 0.3s forwards;
}

.instruments-collection {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(30px, 5vw, 40px);
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .instruments-collection {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .instruments-collection {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.instrument-module {
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(30px, 5vw, 40px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 320px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: scale(0.95);
  animation: moduleExpand 1.2s ease-out forwards;
}

.instrument-module:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.instrument-module:nth-child(1) { animation-delay: 0.2s; }
.instrument-module:nth-child(2) { animation-delay: 0.4s; }
.instrument-module:nth-child(3) { animation-delay: 0.6s; }
.instrument-module:nth-child(4) { animation-delay: 0.8s; }

.module-icon {
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.module-icon svg {
  width: 45px;
  height: 45px;
  color: #c5a35f;
}

.instrument-module:hover .module-icon {
  transform: rotate(10deg);
}

.module-caption {
  font-size: clamp(21px, 2.4vw, 25px);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.module-summary {
  font-size: clamp(15px, 1.9vw, 17px);
  font-family: 'Georgia', serif;
  color: #4b5563;
  line-height: 1.7;
}

.instruments-highlight {
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 40px);
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(30px, 5vw, 40px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-30px);
  animation: highlightSlide 1.2s ease-out 1s forwards;
}

@media (max-width: 768px) {
  .instruments-highlight {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
}

.highlight-visual {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.visual-image {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.instruments-highlight:hover .visual-image {
  transform: scale(1.06);
}

.highlight-info {
  flex: 1;
}

.info-title {
  font-size: clamp(30px, 4.2vw, 38px);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 25px;
}

.info-title em {
  color: #c5a35f;
  font-style: normal;
}

.info-description {
  font-size: clamp(16px, 2.1vw, 19px);
  font-family: 'Georgia', serif;
  color: #4b5563;
  line-height: 1.7;
  max-width: 500px;
}

@media (max-width: 768px) {
  .executive-instruments {
    padding: 60px 0;
  }
  .instruments-header {
    margin-bottom: 50px;
  }
  .header-title {
    font-size: clamp(28px, 5.8vw, 36px);
  }
  .header-subtitle {
    font-size: clamp(16px, 3vw, 19px);
  }
  .instruments-collection {
    margin-bottom: 50px;
  }
  .instrument-module {
    min-height: 300px;
    padding: 25px;
  }
  .module-caption {
    font-size: clamp(20px, 3.2vw, 23px);
  }
  .module-summary {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  .instruments-highlight {
    padding: 25px;
  }
  .info-title {
    font-size: clamp(26px, 5.5vw, 32px);
  }
  .info-description {
    font-size: clamp(15px, 2.8vw, 17px);
    max-width: none;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .executive-instruments {
    padding: 50px 0;
  }
  .header-title {
    font-size: 26px;
  }
  .header-subtitle {
    font-size: 15px;
  }
  .instruments-collection {
    gap: 20px;
  }
  .instrument-module {
    padding: 20px;
    min-height: 280px;
  }
  .module-icon svg {
    width: 40px;
    height: 40px;
  }
  .module-caption {
    font-size: 19px;
  }
  .module-summary {
    font-size: 14px;
  }
  .instruments-highlight {
    gap: 20px;
    padding: 20px;
  }
  .info-title {
    font-size: 24px;
  }
  .info-description {
    font-size: 14px;
  }
}

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

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

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

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

.novice-resources {
  padding: clamp(80px, 16vh, 140px) 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.novice-resources::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(197, 163, 95, 0.1) 0%, transparent 60%);
  opacity: 0.8;
  z-index: 0;
  transition: opacity 0.7s ease;
}

.novice-resources:hover::before {
  opacity: 1;
}

.resources-intro {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.intro-headline {
  font-size: clamp(34px, 5vw, 46px);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #e5e7eb;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: headlineLift 1.3s ease-out forwards;
}

.intro-overview {
  font-size: clamp(18px, 2.4vw, 22px);
  font-family: 'Georgia', serif;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: headlineLift 1.3s ease-out 0.4s forwards;
}

.resources-array {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(35px, 6vw, 45px);
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .resources-array {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .resources-array {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.resource-block {
  background: #1f2937;
  border-radius: 20px;
  padding: clamp(35px, 6vw, 45px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: blockUnveil 1.4s ease-out forwards;
}

.resource-block:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(197, 163, 95, 0.25);
}

.resource-block:nth-child(1) { animation-delay: 0.3s; }
.resource-block:nth-child(2) { animation-delay: 0.5s; }
.resource-block:nth-child(3) { animation-delay: 0.7s; }
.resource-block:nth-child(4) { animation-delay: 0.9s; }
.resource-block:nth-child(5) { animation-delay: 1.1s; }

.block-symbol {
  margin-bottom: 30px;
  transition: transform 0.5s ease;
}

.resource-block:hover .block-symbol {
  transform: scale(1.15);
}

.block-symbol svg {
  width: 52px;
  height: 52px;
}

.block-title {
  font-size: clamp(23px, 2.6vw, 27px);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #d1d5db;
  margin-bottom: 25px;
}

.block-details {
  font-size: clamp(16px, 2vw, 18px);
  font-family: 'Georgia', serif;
  color: #9ca3af;
  line-height: 1.75;
  flex-grow: 1;
}

.block-initiate {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #c5a35f 0%, #a07c3e 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(16px, 2.1vw, 18px);
  text-decoration: none;
  border-radius: 10px;
  margin-top: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.block-initiate:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(197, 163, 95, 0.3);
}

.block-initiate svg {
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  transition: transform 0.4s ease;
}

.block-initiate:hover svg {
  transform: rotate(90deg) translateX(5px);
}

.resources-commence {
  display: block;
  max-width: 220px;
  margin: 50px auto 0;
  padding: 16px 35px;
  background: linear-gradient(90deg, #c5a35f 0%, #a07c3e 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(17px, 2.2vw, 19px);
  text-decoration: none;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  animation: commenceAppear 1.4s ease-out 1.2s forwards;
}

.resources-commence::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
}

.resources-commence:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 25px rgba(197, 163, 95, 0.35);
}

.resources-commence:hover::after {
  width: 400px;
  height: 400px;
}

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

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

@keyframes commenceAppear {
  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .novice-resources {
    padding: 70px 0;
  }
  .resources-intro {
    margin-bottom: 60px;
  }
  .intro-headline {
    font-size: clamp(30px, 6.5vw, 38px);
  }
  .intro-overview {
    font-size: clamp(17px, 3.2vw, 20px);
  }
  .resources-array {
    gap: 30px;
  }
  .resource-block {
    padding: 30px;
  }
  .block-symbol svg {
    width: 48px;
    height: 48px;
  }
  .block-title {
    font-size: clamp(21px, 3.5vw, 24px);
  }
  .block-details {
    font-size: clamp(15px, 2.5vw, 17px);
  }
  .block-initiate {
    padding: 12px 24px;
    font-size: clamp(15px, 2.5vw, 17px);
  }
  .resources-commence {
    padding: 14px 30px;
    font-size: clamp(16px, 3vw, 18px);
    max-width: 200px;
    margin-top: 40px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .novice-resources {
    padding: 60px 0;
  }
  .intro-headline {
    font-size: 28px;
  }
  .intro-overview {
    font-size: 16px;
  }
  .resources-array {
    gap: 25px;
  }
  .resource-block {
    padding: 25px;
  }
  .block-title {
    font-size: 20px;
  }
  .block-details {
    font-size: 14px;
  }
  .block-initiate {
    padding: 10px 20px;
    font-size: 14px;
  }
  .resources-commence {
    padding: 12px 25px;
    font-size: 15px;
    max-width: 180px;
    margin-top: 30px;
  }
}

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

.elite-enrollment {
  padding: clamp(70px, 14vh, 120px) 0;
  background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
}

.elite-enrollment::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(197, 163, 95, 0.15) 0%, transparent 70%);
  opacity: 0.7;
  z-index: 0;
  transition: opacity 0.6s ease;
}

.elite-enrollment:hover::after {
  opacity: 1;
}

.enrollment-preface {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.preface-heading {
  font-size: clamp(36px, 5.5vw, 48px);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #e5e7eb;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(40px);
  animation: headingRise 1.2s ease-out forwards;
}

.preface-description {
  font-size: clamp(19px, 2.5vw, 23px);
  font-family: 'Georgia', serif;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 950px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  animation: headingRise 1.2s ease-out 0.3s forwards;
}

.enrollment-application {
  background: #1f2937;
  border-radius: 25px;
  padding: clamp(35px, 6vw, 45px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.97);
  animation: formExpand 1.4s ease-out 0.6s forwards;
}

.application-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(25px, 4vw, 35px);
  margin-bottom: clamp(25px, 4vw, 35px);
}

@media (max-width: 1024px) {
  .application-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .application-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.application-entry {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(30px);
  animation: entryFade 1.2s ease-out forwards;
}

.application-entry:nth-child(1) { animation-delay: 0.8s; }
.application-entry:nth-child(2) { animation-delay: 0.9s; }
.application-entry:nth-child(3) { animation-delay: 1.0s; }
.application-message { animation-delay: 1.1s; }

.entry-descriptor {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 600;
  color: #d1d5db;
}

.descriptor-content {
  transition: color 0.3s ease;
}

.entry-descriptor:hover .descriptor-content {
  color: #c5a35f;
}

.descriptor-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(197, 163, 95, 0.1);
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.entry-descriptor:hover .descriptor-emblem {
  background: rgba(197, 163, 95, 0.2);
  transform: scale(1.1);
}

.entry-field,
.entry-area {
  padding: 15px 18px;
  border: 1px solid rgba(197, 163, 95, 0.2);
  border-radius: 12px;
  font-size: clamp(15px, 1.9vw, 17px);
  background: #111827;
  color: #e5e7eb;
  transition: all 0.4s ease;
}

.entry-field:focus,
.entry-area:focus {
  border-color: #c5a35f;
  box-shadow: 0 0 0 5px rgba(197, 163, 95, 0.15);
  background: #0f172a;
  outline: none;
}

.entry-area {
  resize: vertical;
  min-height: 160px;
}

.application-footer {
  text-align: center;
  margin-top: clamp(25px, 4vw, 35px);
  opacity: 0;
  transform: translateY(30px);
  animation: entryFade 1.2s ease-out 1.2s forwards;
}

.footer-notice {
  font-size: clamp(13px, 1.7vw, 15px);
  color: #9ca3af;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-notice a {
  color: #c5a35f;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.footer-notice a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c5a35f;
  transition: width 0.3s ease;
}

.footer-notice a:hover::after {
  width: 100%;
}

.footer-notice a:hover {
  color: #e5e7eb;
}

.footer-proceed {
  max-width: 220px;
  min-width: 220px;
  margin: 0 auto;
  padding: 15px 0;
  background: linear-gradient(135deg, #c5a35f 0%, #a07c3e 100%);
  color: #1f2937;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(197, 163, 95, 0.3);
}

.footer-proceed::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.footer-proceed:hover::before {
  opacity: 1;
}

.footer-proceed:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(197, 163, 95, 0.4);
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .elite-enrollment {
    padding: 60px 0;
  }
  .preface-heading {
    font-size: clamp(32px, 7vw, 40px);
  }
  .preface-description {
    font-size: clamp(17px, 3vw, 20px);
  }
  .enrollment-application {
    padding: 30px;
  }
  .application-group {
    gap: 20px;
    margin-bottom: 20px;
  }
  .application-message {
    margin-bottom: 20px;
  }
  .entry-descriptor {
    font-size: clamp(14px, 2vw, 16px);
  }
  .entry-field,
  .entry-area {
    padding: 13px 16px;
    font-size: clamp(14px, 2vw, 16px);
  }
  .entry-area {
    min-height: 140px;
  }
  .footer-notice {
    font-size: clamp(12px, 1.8vw, 14px);
    margin-bottom: 15px;
  }
  .footer-proceed {
    padding: 13px 0;
    font-size: clamp(15px, 2.2vw, 17px);
    max-width: 200px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .elite-enrollment {
    padding: 50px 0;
  }
  .preface-heading {
    font-size: 30px;
  }
  .preface-description {
    font-size: 16px;
  }
  .enrollment-application {
    padding: 25px;
  }
  .application-group {
    gap: 15px;
    margin-bottom: 15px;
  }
  .entry-descriptor {
    font-size: 14px;
  }
  .entry-field,
  .entry-area {
    padding: 11px 14px;
    font-size: 14px;
  }
  .entry-area {
    min-height: 120px;
  }
  .footer-notice {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .footer-proceed {
    padding: 11px 0;
    font-size: 15px;
    max-width: 180px;
  }
}

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

.prestige-closure {
  padding: clamp(40px, 7vh, 60px) 0;
  background: linear-gradient(180deg, #f9fafb 0%, #e5e7eb 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.05);
  border-top: 2px solid #c5a35f;
}

.prestige-closure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 80%, rgba(197, 163, 95, 0.08) 0%, transparent 70%);
  opacity: 0.6;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.prestige-closure:hover::before {
  opacity: 1;
}

.closure-overview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: overviewAscend 1s ease-out forwards;
}

@media (max-width: 768px) {
  .closure-overview {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
}

.overview-emblem {
  width: 80px;
  transition: transform 0.4s ease;
}

.overview-emblem:hover {
  transform: scale(1.08);
}

.emblem-visual {
  width: 100%;
  height: auto;
}

.overview-contacts {
  display: flex;
  gap: clamp(25px, 4vw, 35px);
}

@media (max-width: 768px) {
  .overview-contacts {
    flex-direction: column;
    gap: 15px;
  }
}

.contacts-connection {
  color: #4b5563;
  text-decoration: none;
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 600;
  transition: color 0.3s ease;
}

.contacts-connection:hover {
  color: #c5a35f;
}

.closure-advisory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 5vw, 40px);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .closure-advisory {
    grid-template-columns: 1fr;
  }
}

.advisory-article {
  background: #ffffff;
  border-radius: 15px;
  padding: clamp(25px, 4vw, 35px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: articleUnfold 1.2s ease-out forwards;
}

.advisory-article:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.advisory-article:nth-child(1) { animation-delay: 0.2s; }
.advisory-article:nth-child(2) { animation-delay: 0.3s; }
.advisory-article:nth-child(3) { animation-delay: 0.4s; }
.advisory-article:nth-child(4) { animation-delay: 0.5s; }

.article-caption {
  font-size: clamp(20px, 2.5vw, 24px);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.article-content {
  font-size: clamp(14px, 1.8vw, 16px);
  font-family: 'Georgia', serif;
  color: #4b5563;
  line-height: 1.75;
}

.article-content strong {
  color: #c5a35f;
  font-weight: 700;
}

.article-content a {
  color: #c5a35f;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.article-content a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c5a35f;
  transition: width 0.3s ease;
}

.article-content a:hover::after {
  width: 100%;
}

.article-content a:hover {
  color: #1f2937;
}

.advisory-certification {
  grid-column: span 2;
  background: #ffffff;
  border-radius: 15px;
  padding: clamp(25px, 4vw, 35px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: articleUnfold 1.2s ease-out 0.6s forwards;
}

@media (max-width: 1024px) {
  .advisory-certification {
    grid-column: span 1;
  }
}

.advisory-certification:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.certification-details {
  font-size: clamp(14px, 1.8vw, 16px);
  font-family: 'Georgia', serif;
  color: #4b5563;
  line-height: 1.75;
}

.closure-conclusion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: conclusionAscend 1s ease-out 0.8s forwards;
}

@media (max-width: 768px) {
  .closure-conclusion {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.conclusion-rights {
  font-size: clamp(13px, 1.7vw, 15px);
  color: #4b5563;
}

.conclusion-navigation {
  display: flex;
  gap: clamp(20px, 3vw, 30px);
}

@media (max-width: 768px) {
  .conclusion-navigation {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

.navigation-option {
  color: #4b5563;
  text-decoration: none;
  font-size: clamp(13px, 1.7vw, 15px);
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.navigation-option::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c5a35f;
  transition: width 0.3s ease;
}

.navigation-option:hover {
  color: #c5a35f;
}

.navigation-option:hover::after {
  width: 100%;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .prestige-closure {
    padding: 35px 0;
  }
  .closure-overview {
    margin-bottom: 30px;
  }
  .overview-emblem {
    width: 70px;
  }
  .overview-contacts {
    gap: 20px;
  }
  .closure-advisory {
    gap: 25px;
    margin-bottom: 40px;
  }
  .advisory-article {
    padding: 20px;
  }
  .article-caption {
    font-size: clamp(18px, 3vw, 22px);
  }
  .article-content {
    font-size: clamp(13px, 2vw, 15px);
  }
  .advisory-certification {
    padding: 20px;
  }
  .certification-details {
    font-size: clamp(13px, 2vw, 15px);
  }
  .conclusion-rights {
    font-size: clamp(12px, 1.8vw, 14px);
  }
  .navigation-option {
    font-size: clamp(12px, 1.8vw, 14px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .prestige-closure {
    padding: 30px 0;
  }
  .closure-overview {
    gap: 15px;
    margin-bottom: 25px;
  }
  .overview-emblem {
    width: 60px;
  }
  .overview-contacts {
    gap: 15px;
  }
  .closure-advisory {
    gap: 20px;
    margin-bottom: 30px;
  }
  .advisory-article {
    padding: 15px;
  }
  .article-caption {
    font-size: 18px;
  }
  .article-content {
    font-size: 13px;
  }
  .advisory-certification {
    padding: 15px;
  }
  .certification-details {
    font-size: 13px;
  }
  .conclusion-rights {
    font-size: 12px;
  }
  .conclusion-navigation {
    gap: 10px;
  }
  .navigation-option {
    font-size: 12px;
  }
}

/* -------------------------cookie------------------------------- */

.cookie-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(20px, 3vw, 30px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.5s ease-out forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-section:hover {
    transform: translateY(45px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

#cookieSvg {
    width: clamp(40px, 6vw, 50px);
    margin-bottom: 15px;
}

#cookieSvg g path {
    fill: #4da8ff;
    transition: fill 0.3s ease;
}

.cookie-section:hover #cookieSvg g path {
    fill: #2a2a4e;
}

.cookie-title {
    font-size: clamp(1.1em, 2vw, 1.2em);
    font-weight: 700;
    text-align: center;
    color: #2a2a4e;
    margin-bottom: 10px;
}

.cookie-text {
    text-align: center;
    font-size: clamp(0.65em, 1.5vw, 0.7em);
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: clamp(15px, 2vw, 20px);
    flex-direction: row;
}

.cookie-accept {
    width: clamp(70px, 10vw, 80px);
    height: clamp(25px, 4vw, 30px);
    background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
    transition-duration: 0.3s;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(0.8em, 1.5vw, 0.9em);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cookie-accept::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.cookie-accept:hover {
    background: linear-gradient(90deg, #4da8ff 0%, #2a2a4e 100%);
}

.cookie-accept:hover::before {
    left: 100%;
}

.cookie-reject {
    width: clamp(70px, 10vw, 80px);
    height: clamp(25px, 4vw, 30px);
    background-color: #e0e0e0;
    transition-duration: 0.3s;
    color: #2a2a4e;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(0.8em, 1.5vw, 0.9em);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cookie-reject::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
}

.cookie-reject:hover {
    background-color: #c0c0c0;
}

.cookie-reject:hover::before {
    left: 100%;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-section {
        max-width: 90%;
        bottom: 10px;
        right: 5%;
        padding: 15px;
    }
    .cookie-title {
        font-size: 1em;
    }
    .cookie-text {
        font-size: 0.65em;
    }
    .cookie-buttons {
        gap: 15px;
    }
    .cookie-accept, .cookie-reject {
        width: 70px;
        height: 25px;
        font-size: 0.8em;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .cookie-section {
        max-width: 95%;
        padding: 10px;
        bottom: 5px;
        right: 2.5%;
    }
    #cookieSvg {
        width: 35px;
    }
    .cookie-title {
        font-size: 0.9em;
    }
    .cookie-text {
        font-size: 0.6em;
    }
    .cookie-buttons {
        gap: 10px;
    }
    .cookie-accept, .cookie-reject {
        width: 60px;
        height: 22px;
        font-size: 0.7em;
        border-radius: 15px;
    }
}

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