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

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

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

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

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

html {
  scroll-behavior: smooth;
}

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

body.lock {
  overflow: hidden;
}

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

a {
  transition: all 0.3s ease;
}

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

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


/* 1 */
.risk-advisory-panel {
  background: linear-gradient(to right, #f5f7fa 0%, #e9ecef 100%);
  border-bottom: 3px solid #d4af37;
  padding: clamp(15px, 2.5vw, 25px) 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.risk-advisory-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  opacity: 0.6;
}

.disclosure-wrapper {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 1.5vw, 15px);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.98);
  animation: elegantReveal 1s ease-out 0.2s forwards;
}

.disclosure-icon {
  font-size: clamp(20px, 3vw, 24px);
  color: #c0392b;
  flex-shrink: 0;
  animation: pulseGlow 1.5s infinite alternate ease-in-out;
}

.disclosure-text {
  color: #333333;
  font-size: clamp(13px, 1.7vw, 15px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.5px;
  margin: 0;
}

.highlight-stat {
  font-weight: 700;
  color: #2c3e50;
  background: rgba(212, 175, 55, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.disclosure-link {
  color: #2980b9;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.disclosure-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #2980b9;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.disclosure-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.disclosure-link:hover {
  color: #3498db;
}

.risk-advisory-panel:hover {
  background: linear-gradient(to right, #e8eff5 0%, #d9e0e6 100%);
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.08);
}

.risk-advisory-panel:hover .highlight-stat {
  background: rgba(212, 175, 55, 0.2);
}

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

@keyframes pulseGlow {
  from {
    text-shadow: 0 0 5px rgba(192, 57, 43, 0.3);
  }
  to {
    text-shadow: 0 0 10px rgba(192, 57, 43, 0.6);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .disclosure-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .disclosure-text {
    font-size: clamp(12px, 1.5vw, 13px);
  }

  .disclosure-icon {
    font-size: clamp(18px, 2.8vw, 22px);
  }
}

/* header */

.executive-nav-panel {
  background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  padding: clamp(10px, 2vw, 20px) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.6s ease-in-out;
}

.executive-nav-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  opacity: 0.8;
  z-index: 0;
}

.prestige-header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 30px);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-15px);
  animation: subtleEntrance 1s ease-out 0.3s forwards;
}

.elite-brand-emblem {
  max-width: 60px;
  width: 100%;
  display: block;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.elite-brand-emblem:hover {
  filter: brightness(1.1);
  transform: rotate(5deg) scale(1.08);
}

.elite-brand-emblem__graphic {
  width: 100%;
  height: auto;
}

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

.imperial-initiate-command {
  display: inline-block;
  padding: clamp(8px, 1.5vw, 12px) clamp(15px, 3vw, 25px);
  background: linear-gradient(45deg, #3b82f6 0%, #60a5fa 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(13px, 1.7vw, 15px);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.imperial-initiate-command::after {
  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;
}

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

.imperial-initiate-command:hover::after {
  opacity: 1;
}

.sovereign-navigation__roster {
  display: none;
}

@media screen and (min-width: 1200px) {
  .sovereign-navigation__roster {
    display: flex;
    align-items: center;
    gap: clamp(25px, 4vw, 35px);
  }
}

.sovereign-navigation__passage {
  color: #e2e8f0;
  text-decoration: none;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.sovereign-navigation__passage::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #93c5fd;
  transition: width 0.4s ease, left 0.4s ease;
}

.sovereign-navigation__passage:hover {
  color: #93c5fd;
}

.sovereign-navigation__passage:hover::before {
  width: 100%;
  left: 0;
}

.prestige-toggle-switch {
  flex-shrink: 0;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.prestige-toggle-switch:hover {
  transform: scale(1.1);
}

.prestige-toggle-switch::before,
.prestige-toggle-switch::after,
.prestige-toggle-switch span {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.prestige-toggle-switch::before {
  transform-origin: center;
}

.prestige-toggle-switch::after {
  transform-origin: center;
}

.prestige-toggle-switch.is-active::before {
  transform: translateY(10px) rotate(45deg);
}

.prestige-toggle-switch.is-active::after {
  transform: translateY(-10px) rotate(-45deg);
}

.prestige-toggle-switch.is-active span {
  opacity: 0;
  transform: scale(0);
}

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

.regal-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(-100%);
}

.regal-mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.regal-mobile-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

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

.regal-mobile-navigation__portal {
  color: #e2e8f0;
  text-decoration: none;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.regal-mobile-navigation__portal:hover {
  color: #93c5fd;
  transform: scale(1.05);
}

.regal-mobile-command {
  padding: clamp(10px, 2vw, 15px) clamp(20px, 4vw, 30px);
  font-size: clamp(16px, 2.5vw, 18px);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .prestige-header-layout {
    gap: 10px;
  }

  .elite-brand-emblem {
    max-width: 50px;
  }

  .imperial-initiate-command {
    padding: 8px 15px;
    font-size: clamp(12px, 1.6vw, 14px);
  }
}

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

.imperial-gateway-facade {
  padding: clamp(100px, 18vh, 180px) 0;
  position: relative;
  color: #f5f5f5;
  background-image: url(../img/hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  overflow: hidden;
  border-bottom: 4px solid rgba(212, 175, 55, 0.3);
  transition: border-color 0.6s ease;
}

.imperial-gateway-facade:hover {
  border-color: rgba(212, 175, 55, 0.6);
}

.imperial-gateway-facade::after {
  position: absolute;
  content: "";
  inset: 0;
  background: radial-gradient(circle at top left, rgba(10, 25, 47, 0.8) 20%, transparent 80%);
  z-index: -1;
  opacity: 0.85;
  transition: opacity 0.6s ease-in-out;
}

.imperial-gateway-facade:hover::after {
  opacity: 0.95;
}

.opulent-welcome-ensemble {
  max-width: 800px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: perspective(1000px) rotateX(-10deg);
  animation: dignifiedUnveil 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.grand-vision-proclamation {
  font-size: clamp(40px, 7vw, 60px);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: text-shadow 0.4s ease;
}

.opulent-welcome-ensemble:hover .grand-vision-proclamation {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.exquisite-insight-narrative {
  font-size: clamp(18px, 2.8vw, 22px);
  margin-bottom: 35px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.3px;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.opulent-welcome-ensemble:hover .exquisite-insight-narrative {
  opacity: 1;
}

.regal-embarkation-gateway {
  display: inline-block;
  padding: clamp(10px, 1.8vw, 14px) clamp(20px, 3.5vw, 30px);
  color: #1a1a2e;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.regal-embarkation-gateway::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.regal-embarkation-gateway:hover {
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
  color: #0f172a;
}

.regal-embarkation-gateway:hover::before {
  width: 300%;
  height: 300%;
}

.regal-embarkation-gateway span {
  position: relative;
  z-index: 1;
}

@keyframes dignifiedUnveil {
  to {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .grand-vision-proclamation {
    font-size: clamp(32px, 9vw, 44px);
    max-width: 100%;
  }
  .exquisite-insight-narrative {
    font-size: clamp(15px, 3.2vw, 19px);
    max-width: 100%;
  }
  .regal-embarkation-gateway {
    padding: 9px 18px;
    font-size: clamp(13px, 2.2vw, 15px);
  }
  .opulent-welcome-ensemble {
    max-width: 100%;
  }
}

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

.prestige-accolade-vitrine {
  background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
  padding: clamp(30px, 6vw, 50px) 0;
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.prestige-accolade-vitrine::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  opacity: 0.7;
  z-index: -1;
}

.elite-endorsement-mosaic {
  display: flex;
  justify-content: space-around;
  gap: clamp(15px, 4vw, 25px);
  flex-wrap: wrap;
}

.sovereign-commendation-capsule {
  background: rgba(30, 41, 59, 0.8);
  padding: clamp(15px, 3.5vw, 25px);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 180px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
  animation: refinedEmergence 0.9s ease-in-out forwards;
}

.sovereign-commendation-capsule:nth-child(1) {
  animation-delay: 0.15s;
}

.sovereign-commendation-capsule:nth-child(2) {
  animation-delay: 0.3s;
}

.sovereign-commendation-capsule:nth-child(3) {
  animation-delay: 0.45s;
}

.sovereign-commendation-capsule:nth-child(4) {
  animation-delay: 0.6s;
}

.sovereign-commendation-capsule:hover {
  background: rgba(30, 41, 59, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.distinguished-acclaim-crest {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.acclaim-emblem-icon {
  height: clamp(24px, 3.5vw, 28px);
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: filter 0.4s ease;
}

.distinguished-acclaim-crest:hover .acclaim-emblem-icon {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

.acclaim-descriptor-label {
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 600;
  color: #e5e7eb;
  letter-spacing: 0.4px;
}

.illustrious-merit-showcase {
  display: flex;
  align-items: center;
  gap: 6px;
}

.merit-numeric-valuation {
  font-weight: 800;
  font-size: clamp(20px, 3.2vw, 26px);
  color: #d4af37;
  margin-right: 10px;
}

.accolade-luminary-constellation {
  display: flex;
  gap: 5px;
}

.merit-luminary-symbol {
  color: #d4af37;
  width: clamp(16px, 2.2vw, 20px);
  height: clamp(16px, 2.2vw, 20px);
  transition: transform 0.4s ease, color 0.4s ease;
  animation: subtleTwinkle 1.5s infinite alternate ease-in-out;
}

.merit-luminary-symbol:hover {
  transform: rotate(15deg) scale(1.15);
  color: #f4d03f;
}

.merit-luminary-symbol[fill="none"] {
  stroke: #d4af37;
}

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

@keyframes subtleTwinkle {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .elite-endorsement-mosaic {
    justify-content: center;
    gap: 20px;
  }

  .sovereign-commendation-capsule {
    min-width: 160px;
  }

  .merit-numeric-valuation {
    font-size: clamp(18px, 4vw, 22px);
  }

  .acclaim-descriptor-label {
    font-size: clamp(13px, 2vw, 15px);
  }
}

@media (max-width: 360px) {
  .elite-endorsement-mosaic {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .sovereign-commendation-capsule {
    width: 100%;
    max-width: 280px;
  }

  .acclaim-emblem-icon {
    height: 22px;
  }

  .merit-luminary-symbol {
    width: 15px;
    height: 15px;
  }
}

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

.sovereign-insight-sanctum {
  padding: clamp(80px, 15vh, 120px) 0;
  background: linear-gradient(to bottom, #f8fafc 0%, #e5e7eb 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sovereign-insight-sanctum::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  opacity: 0.6;
  z-index: -1;
}

.sovereign-insight-sanctum::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  z-index: -1;
  animation: pulseGlow 4s infinite ease-in-out;
}

.majestic-overview-ensemble {
  text-align: center;
  position: relative;
  z-index: 2;
}

.grand-alliance-declaration {
  font-size: clamp(34px, 6vw, 48px);
  font-weight: 900;
  color: #111827;
  margin-bottom: 60px;
  letter-spacing: -1px;
  text-transform: uppercase;
  background: linear-gradient(to right, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  opacity: 0;
  transform: translateY(-30px);
  animation: majesticAscension 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.grand-alliance-declaration::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(to right, #3b82f6, #1e3a8a);
  border-radius: 2px;
}

.opulent-merit-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 5vw, 40px);
  margin-bottom: 60px;
}

.refined-virtue-artifact {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(25px, 4vw, 30px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 0 10px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(229, 231, 235, 0.4);
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  opacity: 0;
  transform: perspective(1000px) rotateY(10deg);
  animation: artifactUnfold 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.refined-virtue-artifact:nth-child(odd) {
  transform: perspective(1000px) rotateY(-10deg);
}

.refined-virtue-artifact:nth-child(1) { animation-delay: 0.2s; }
.refined-virtue-artifact:nth-child(2) { animation-delay: 0.35s; }
.refined-virtue-artifact:nth-child(3) { animation-delay: 0.5s; }
.refined-virtue-artifact:nth-child(4) { animation-delay: 0.65s; }
.refined-virtue-artifact:nth-child(5) { animation-delay: 0.8s; }
.refined-virtue-artifact:nth-child(6) { animation-delay: 0.95s; }

.refined-virtue-artifact:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), inset 0 0 15px rgba(255, 255, 255, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
}

.elegant-visual-portal {
  position: relative;
  margin-bottom: 25px;
  border-radius: 16px;
  overflow: hidden;
}

.visual-overlay-aura {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(59, 130, 246, 0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.refined-virtue-artifact:hover .visual-overlay-aura {
  opacity: 0.7;
}

.visual-masterpiece-canvas {
  width: 100%;
  height: clamp(200px, 30vw, 240px);
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.7s ease-in-out, filter 0.7s ease;
}

.refined-virtue-artifact:hover .visual-masterpiece-canvas {
  transform: scale(1.1);
  filter: brightness(1.05);
}

.virtue-proclamation-banner {
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  position: relative;
  transition: color 0.4s ease;
}

.virtue-proclamation-banner::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.4s ease;
}

.refined-virtue-artifact:hover .virtue-proclamation-banner::before {
  width: 50%;
}

.refined-virtue-artifact:hover .virtue-proclamation-banner {
  color: #2563eb;
}

.insight-narrative-scroll {
  font-size: clamp(15px, 2.2vw, 17px);
  color: #4b5563;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: color 0.4s ease;
}

.refined-virtue-artifact:hover .insight-narrative-scroll {
  color: #1f2937;
}

.imperial-convocation-portal {
  display: inline-block;
  padding: clamp(12px, 2vw, 16px) clamp(25px, 4vw, 35px);
  background: linear-gradient(45deg, #1e40af, #60a5fa);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(16px, 2.1vw, 18px);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
  opacity: 0;
  animation: portalEmerge 1.2s ease-out 1s forwards;
}

.imperial-convocation-portal::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 80%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.imperial-convocation-portal:hover {
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
  transform: translateY(-5px);
}

.imperial-convocation-portal:hover::before {
  width: 300%;
  height: 300%;
}

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

@keyframes artifactUnfold {
  to {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
  }
}

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

@keyframes pulseGlow {
  0% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sovereign-insight-sanctum {
    padding: 60px 0;
  }

  .grand-alliance-declaration {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 40px;
  }

  .opulent-merit-gallery {
    gap: 25px;
    margin-bottom: 40px;
  }

  .refined-virtue-artifact {
    padding: 20px;
  }

  .visual-masterpiece-canvas {
    height: clamp(180px, 35vw, 220px);
  }

  .virtue-proclamation-banner {
    font-size: clamp(20px, 3.2vw, 23px);
  }

  .insight-narrative-scroll {
    font-size: clamp(14px, 2.4vw, 16px);
  }

  .imperial-convocation-portal {
    padding: 11px 22px;
    font-size: clamp(15px, 2.3vw, 17px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .grand-alliance-declaration {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .opulent-merit-gallery {
    gap: 20px;
    margin-bottom: 30px;
  }

  .refined-virtue-artifact {
    padding: 18px;
  }

  .visual-masterpiece-canvas {
    height: 160px;
  }

  .virtue-proclamation-banner {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .insight-narrative-scroll {
    font-size: 13px;
  }

  .imperial-convocation-portal {
    padding: 10px 20px;
    font-size: 14px;
  }
}

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

.imperial-strategy-haven {
  padding: clamp(80px, 15vh, 120px) 0;
  background: linear-gradient(to bottom, #0a1122 0%, #1a2a44 100%);
  color: #e5e7eb;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.imperial-strategy-haven::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) 0%, transparent 60%);
  opacity: 0.7;
  z-index: -1;
}

.imperial-strategy-haven::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 150px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  opacity: 0.5;
  animation: subtlePulse 5s infinite ease-in-out;
}

.regal-insight-core {
  text-align: center;
  position: relative;
  z-index: 2;
}

.sovereign-expertise-manifesto {
  font-size: clamp(36px, 6vw, 50px);
  font-weight: 900;
  color: transparent;
  background: linear-gradient(to right, #93c5fd, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 30px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  position: relative;
  opacity: 0;
  transform: translateY(-30px);
  animation: manifestoUnveil 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.sovereign-expertise-manifesto::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(to right, transparent, #3b82f6, transparent);
  border-radius: 2px;
}

.noble-vision-narrative {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 300;
  line-height: 1.65;
  color: #d1d5db;
  max-width: 850px;
  margin: 0 auto 50px;
  opacity: 0;
  transform: translateY(-20px);
  animation: narrativeFadeIn 1s ease-out 0.3s forwards;
}

.opulent-tactic-arsenal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(25px, 4vw, 35px);
  margin-bottom: 60px;
}

.elite-strategy-module {
  background: linear-gradient(145deg, #1e2a44 0%, #0f172a 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 18px;
  padding: clamp(25px, 4vw, 30px);
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  opacity: 0;
  transform: perspective(1000px) rotateX(10deg);
  animation: moduleAscend 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

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

.elite-strategy-module:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-8px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.5);
}

.strategy-emblem-frame {
  position: relative;
  margin-bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-icon {
  color: #93c5fd;
  width: 44px;
  height: 44px;
  transition: transform 0.5s ease, color 0.5s ease;
}

.elite-strategy-module:hover .emblem-icon {
  transform: rotate(15deg) scale(1.15);
  color: #bfdbfe;
}

.tactic-proclamation {
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 800;
  color: #e5e7eb;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  position: relative;
}

.tactic-proclamation::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.4s ease;
}

.elite-strategy-module:hover .tactic-proclamation::before {
  width: 60%;
}

.strategy-insight-text {
  font-size: clamp(15px, 2.1vw, 17px);
  line-height: 1.7;
  color: #d1d5db;
  transition: color 0.4s ease;
}

.elite-strategy-module:hover .strategy-insight-text {
  color: #f3f4f6;
}

.prime-transaction-vista {
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 40px);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: vistaReveal 1s ease-out 0.9s forwards;
}

.transaction-visual-portal {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.vista-image-canvas {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease-in-out, filter 0.7s ease;
}

.vista-overlay-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.prime-transaction-vista:hover .vista-image-canvas {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.prime-transaction-vista:hover .vista-overlay-glow {
  opacity: 0.8;
}

.transaction-insight-nexus {
  flex: 1;
}

.nexus-proclamation {
  font-size: clamp(30px, 4.5vw, 40px);
  font-weight: 900;
  color: #e5e7eb;
  margin-bottom: 20px;
}

.nexus-proclamation span {
  display: block;
  color: #93c5fd;
  font-size: clamp(34px, 5vw, 44px);
}

.nexus-insight-narrative {
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.65;
  color: #d1d5db;
  max-width: 450px;
}

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

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

@keyframes moduleAscend {
  to {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg);
  }
}

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

@keyframes subtlePulse {
  0% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1.05);
  }
  100% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .imperial-strategy-haven {
    padding: 60px 0;
  }

  .sovereign-expertise-manifesto {
    font-size: clamp(28px, 7vw, 36px);
    margin-bottom: 25px;
  }

  .noble-vision-narrative {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 40px;
  }

  .opulent-tactic-arsenal {
    gap: 20px;
    margin-bottom: 40px;
  }

  .elite-strategy-module {
    padding: 20px;
  }

  .prime-transaction-vista {
    flex-direction: column;
    gap: 25px;
  }

  .nexus-proclamation {
    font-size: clamp(26px, 5vw, 34px);
  }

  .nexus-proclamation span {
    font-size: clamp(30px, 5.5vw, 38px);
  }

  .nexus-insight-narrative {
    font-size: clamp(15px, 2.4vw, 18px);
    max-width: 100%;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .imperial-strategy-haven {
    padding: 50px 0;
  }

  .sovereign-expertise-manifesto {
    font-size: 26px;
  }

  .noble-vision-narrative {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .opulent-tactic-arsenal {
    gap: 15px;
    margin-bottom: 30px;
  }

  .elite-strategy-module {
    padding: 18px;
  }

  .strategy-emblem-frame {
    width: 50px;
    height: 50px;
  }

  .emblem-icon {
    width: 36px;
    height: 36px;
  }

  .tactic-proclamation {
    font-size: 20px;
  }

  .strategy-insight-text {
    font-size: 14px;
  }

  .nexus-proclamation {
    font-size: 24px;
  }

  .nexus-proclamation span {
    font-size: 28px;
  }

  .nexus-insight-narrative {
    font-size: 14px;
  }
}

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

.noble-guidance-citadel {
  padding: clamp(90px, 16vh, 130px) 0;
  background: linear-gradient(to bottom, #0a1122 0%, #1a2a44 100%);
  color: #e5e7eb;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.noble-guidance-citadel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.15) 0%, transparent 65%);
  opacity: 0.6;
  z-index: -1;
}

.noble-guidance-citadel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: etherealGlow 6s infinite ease-in-out;
  z-index: -1;
}

.exalted-knowledge-core {
  text-align: center;
  position: relative;
  z-index: 2;
}

.regal-wisdom-proclamation {
  font-size: clamp(38px, 6.5vw, 52px);
  font-weight: 900;
  color: transparent;
  background: linear-gradient(to right, #93c5fd, #1e40af);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 35px;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  animation: proclamationUnveil 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.regal-wisdom-proclamation::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 4px;
  background: linear-gradient(to right, transparent, #3b82f6, transparent);
  border-radius: 2px;
}

.stately-insight-narrative {
  font-size: clamp(19px, 3vw, 23px);
  font-weight: 300;
  line-height: 1.7;
  color: #d1d5db;
  max-width: 900px;
  margin: 0 auto 60px;
  opacity: 0;
  transform: translateY(-25px);
  animation: narrativeEmerge 1.1s ease-out 0.3s forwards;
}

.opulent-resource-tapestry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 5vw, 40px);
  margin-bottom: 60px;
}

@media (max-width: 1200px) {
  .opulent-resource-tapestry {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.prime-knowledge-artifact {
  background: linear-gradient(145deg, #1e2a44 0%, #0f172a 100%);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 20px;
  padding: clamp(25px, 4vw, 30px);
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  opacity: 0;
  transform: perspective(1000px) rotateY(8deg);
  animation: artifactAscension 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.prime-knowledge-artifact:nth-child(odd) {
  transform: perspective(1000px) rotateY(-8deg);
}

.prime-knowledge-artifact:nth-child(1) { animation-delay: 0.2s; }
.prime-knowledge-artifact:nth-child(2) { animation-delay: 0.4s; }
.prime-knowledge-artifact:nth-child(3) { animation-delay: 0.6s; }
.prime-knowledge-artifact:nth-child(4) { animation-delay: 0.8s; }
.prime-knowledge-artifact:nth-child(5) { animation-delay: 1s; }

.prime-knowledge-artifact:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
  border-color: rgba(59, 130, 246, 0.5);
}

.artifact-wisdom-banner {
  font-size: clamp(23px, 3vw, 27px);
  font-weight: 800;
  color: #e5e7eb;
  letter-spacing: -0.6px;
  position: relative;
  transition: color 0.4s ease;
}

.artifact-wisdom-banner::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: #3b82f6;
  transition: width 0.5s ease;
}

.prime-knowledge-artifact:hover .artifact-wisdom-banner::before {
  width: 70%;
}

.prime-knowledge-artifact:hover .artifact-wisdom-banner {
  color: #bfdbfe;
}

.artifact-insight-scroll {
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.75;
  color: #d1d5db;
  flex-grow: 1;
  transition: color 0.4s ease;
}

.prime-knowledge-artifact:hover .artifact-insight-scroll {
  color: #f3f4f6;
}

.artifact-action-portal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(12px, 2vw, 16px) clamp(20px, 3.5vw, 28px);
  background: linear-gradient(45deg, #1e40af, #60a5fa);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 17px);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.artifact-action-portal::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 80%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.artifact-action-portal:hover {
  box-shadow: 0 6px 18px rgba(30, 64, 175, 0.4);
  transform: translateY(-4px);
}

.artifact-action-portal:hover::before {
  width: 300%;
  height: 300%;
}

.artifact-action-portal .portal-icon {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
  transition: transform 0.4s ease;
}

.artifact-action-portal:hover .portal-icon {
  transform: rotate(-90deg) translateX(6px);
}

.exalted-convocation-gateway {
  display: inline-block;
  padding: clamp(14px, 2.2vw, 18px) clamp(28px, 4vw, 36px);
  background: linear-gradient(to right, #3b82f6, #1e3a8a);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 18px);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
  opacity: 0;
  animation: gatewayManifest 1.2s ease-out 1.1s forwards;
}

.exalted-convocation-gateway::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 10%, transparent 80%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.exalted-convocation-gateway:hover {
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
  transform: translateY(-5px);
}

.exalted-convocation-gateway:hover::before {
  opacity: 1;
}

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

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

@keyframes artifactAscension {
  to {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
  }
}

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

@keyframes etherealGlow {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .noble-guidance-citadel {
    padding: 60px 0;
  }

  .regal-wisdom-proclamation {
    font-size: clamp(30px, 7vw, 38px);
    margin-bottom: 30px;
  }

  .stately-insight-narrative {
    font-size: clamp(17px, 3.2vw, 20px);
    margin-bottom: 40px;
  }

  .opulent-resource-tapestry {
    gap: 25px;
    margin-bottom: 40px;
  }

  .prime-knowledge-artifact {
    padding: 20px;
    min-height: 280px;
  }

  .artifact-wisdom-banner {
    font-size: clamp(21px, 3.2vw, 24px);
  }

  .artifact-insight-scroll {
    font-size: clamp(15px, 2.4vw, 17px);
  }

  .artifact-action-portal {
    padding: 11px 20px;
    font-size: clamp(14px, 2.2vw, 16px);
  }

  .exalted-convocation-gateway {
    padding: 12px 24px;
    font-size: clamp(15px, 2.3vw, 17px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .noble-guidance-citadel {
    padding: 50px 0;
  }

  .regal-wisdom-proclamation {
    font-size: 28px;
  }

  .stately-insight-narrative {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .opulent-resource-tapestry {
    gap: 20px;
    margin-bottom: 30px;
  }

  .prime-knowledge-artifact {
    padding: 18px;
    min-height: 260px;
  }

  .artifact-wisdom-banner {
    font-size: 20px;
  }

  .artifact-insight-scroll {
    font-size: 14px;
  }

  .artifact-action-portal {
    padding: 10px 18px;
    font-size: 13px;
  }

  .artifact-action-portal .portal-icon {
    width: 18px;
    height: 18px;
  }

  .exalted-convocation-gateway {
    padding: 10px 20px;
    font-size: 14px;
  }
}


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

.elite-alliance-gateway {
  padding: clamp(80px, 16vh, 120px) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.elite-alliance-gateway::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cpath fill="%23ffffff" fill-opacity="0.05" d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm62-29c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-12 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm38 54c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-3-60c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z"%3E%3C/path%3E%3C/svg%3E');
  opacity: 0.15;
  z-index: -1;
}

.elite-alliance-gateway::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: luxuriousRadiance 8s infinite ease-in-out;
  z-index: -1;
}

.prestigious-collaboration-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 60px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.majestic-proposition-core {
  text-align: left;
  opacity: 0;
  transform: translateX(-50px);
  animation: coreReveal 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.imperial-summons-declaration {
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 800;
  color: #1580fa;
  margin-bottom: 25px;
  letter-spacing: -0.8px;
  text-transform: capitalize;
  position: relative;
}

.imperial-summons-declaration::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #facc15, transparent);
  border-radius: 1.5px;
}

.aristocratic-prospect-chronicle {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 400;
  line-height: 1.6;
  color: #e2e8f0;
  max-width: 700px;
}

.distinguished-interaction-conduit {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: clamp(25px, 4vw, 35px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 30px);
  opacity: 0;
  transform: translateX(50px);
  animation: conduitManifest 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

.alliance-entry-realm {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: scale(0.98);
  animation: realmExpand 0.8s ease-in-out forwards;
}

.name-realm { animation-delay: 0.6s; }
.email-realm { animation-delay: 0.7s; }
.phone-realm { animation-delay: 0.8s; }
.message-realm { animation-delay: 0.9s; }
.consent-realm { animation-delay: 1s; }

.realm-descriptor {
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 500;
  color: #cbd5e1;
  letter-spacing: 0.3px;
}

.realm-entry-portal,
.realm-communication-portal {
  padding: clamp(10px, 1.8vw, 14px) clamp(14px, 2.2vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: clamp(14px, 1.9vw, 16px);
  background: rgba(255, 255, 255, 0.03);
  color: #e2e8f0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.realm-entry-portal:focus,
.realm-communication-portal:focus {
  border-color: #facc15;
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.15);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.realm-communication-portal {
  resize: vertical;
  min-height: 120px;
}

.accordance-affirmation-text {
  font-size: clamp(12px, 1.7vw, 14px);
  color: #94a3b8;
  text-align: center;
  margin-top: -5px;
  margin-bottom: 5px;
}

.accordance-affirmation-anchor {
  color: #facc15;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.accordance-affirmation-anchor::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #facc15;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.accordance-affirmation-anchor:hover {
  color: #fde047;
}

.accordance-affirmation-anchor:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.sovereign-activation-threshold {
  min-width: 180px;
  margin: 0 auto;
  padding: clamp(12px, 2vw, 16px) 0;
  background: linear-gradient(to right, #3b82f6, #1e3a8a);
  color: #0f172a;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: clamp(15px, 2.1vw, 17px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(202, 138, 4, 0.25);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.sovereign-activation-threshold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.sovereign-activation-threshold:hover {
  box-shadow: 0 6px 18px rgba(202, 138, 4, 0.35);
  transform: translateY(-3px);
}

.sovereign-activation-threshold:hover::before {
  left: 100%;
}

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

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

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

@keyframes luxuriousRadiance {
  0% {
    opacity: 0.2;
    transform: rotate(0deg);
  }
  50% {
    opacity: 0.4;
    transform: rotate(180deg);
  }
  100% {
    opacity: 0.2;
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .prestigious-collaboration-hub {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .majestic-proposition-core {
    text-align: center;
  }

  .imperial-summons-declaration::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .elite-alliance-gateway {
    padding: 60px 0;
  }

  .imperial-summons-declaration {
    font-size: clamp(28px, 7vw, 36px);
    margin-bottom: 20px;
  }

  .aristocratic-prospect-chronicle {
    font-size: clamp(16px, 3vw, 19px);
  }

  .distinguished-interaction-conduit {
    padding: 20px;
    gap: 18px;
  }

  .realm-descriptor {
    font-size: clamp(13px, 2vw, 15px);
  }

  .realm-entry-portal,
  .realm-communication-portal {
    padding: 9px 13px;
    font-size: clamp(13px, 2vw, 15px);
  }

  .realm-communication-portal {
    min-height: 100px;
  }

  .accordance-affirmation-text {
    font-size: clamp(11px, 1.8vw, 13px);
  }

  .sovereign-activation-threshold {
    padding: 10px 0;
    font-size: clamp(14px, 2.2vw, 16px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .elite-alliance-gateway {
    padding: 40px 0;
  }

  .imperial-summons-declaration {
    font-size: 24px;
  }

  .aristocratic-prospect-chronicle {
    font-size: 15px;
  }

  .distinguished-interaction-conduit {
    padding: 15px;
    gap: 15px;
  }

  .alliance-entry-realm {
    gap: 6px;
  }

  .realm-descriptor {
    font-size: 13px;
  }

  .realm-entry-portal,
  .realm-communication-portal {
    padding: 8px 12px;
    font-size: 12px;
  }

  .realm-communication-portal {
    min-height: 80px;
  }

  .accordance-affirmation-text {
    font-size: 11px;
    margin-top: -4px;
    margin-bottom: 4px;
  }

  .sovereign-activation-threshold {
    padding: 8px 0;
    font-size: 13px;
    max-width: 160px;
  }
}


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

.imperial-foundation-citadel {
  padding: clamp(80px, 14vh, 120px) 0;
  background: linear-gradient(to bottom, #0a1122 0%, #1a2a44 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.imperial-foundation-citadel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15) 0%, transparent 65%);
  opacity: 0.6;
  z-index: -1;
}

.imperial-foundation-citadel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: subtleGlow 5s infinite ease-in-out;
  z-index: -1;
}

.regal-information-vault {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: vaultUnveil 1.2s ease-out forwards;
}

@media (max-width: 768px) {
  .regal-information-vault {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

.noble-emblem-portal {
  opacity: 0;
  transform: translateY(20px);
  animation: emblemAscend 1s ease-out 0.2s forwards;
}

.sovereign-brand-insignia {
  display: block;
  width: 80px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.sovereign-brand-insignia:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.insignia-graphic {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.exalted-contact-conduit {
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: conduitAscend 1s ease-out 0.3s forwards;
}

.conduit-link {
  color: #d1d5db;
  text-decoration: none;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 600;
  position: relative;
  transition: color 0.4s ease;
}

.conduit-link::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.4s ease;
}

.conduit-link:hover {
  color: #93c5fd;
}

.conduit-link:hover::before {
  width: 100%;
}

.stately-disclosure-chamber {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(25px, 4vw, 35px);
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.disclosure-manifesto {
  background: linear-gradient(145deg, #1e2a44 0%, #0f172a 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 25px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: perspective(1000px) rotateY(10deg);
  animation: manifestoReveal 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.disclosure-manifesto:nth-child(odd) {
  transform: perspective(1000px) rotateY(-10deg);
}

.disclosure-manifesto:nth-child(1) { animation-delay: 0.4s; }
.disclosure-manifesto:nth-child(2) { animation-delay: 0.5s; }
.disclosure-manifesto:nth-child(3) { animation-delay: 0.6s; }
.disclosure-manifesto:nth-child(4) { animation-delay: 0.7s; }

.disclosure-manifesto:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-8px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.manifesto-title {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  color: #e5e7eb;
  margin-bottom: 15px;
  letter-spacing: -0.4px;
}

.manifesto-text {
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.65;
  color: #d1d5db;
}

.highlight-stat {
  font-weight: 700;
  color: #93c5fd;
}

.manifesto-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.4s ease;
}

.manifesto-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.4s ease;
}

.manifesto-link:hover {
  color: #93c5fd;
}

.manifesto-link:hover::before {
  width: 100%;
}

.prime-directive-vault {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: vaultUnveil 1.2s ease-out 0.8s forwards;
}

@media (max-width: 768px) {
  .prime-directive-vault {
    flex-direction: column;
    gap: 20px;
  }
}

.vault-copyright {
  font-size: clamp(14px, 1.9vw, 16px);
  color: #d1d5db;
}

.directive-navigation {
  display: flex;
  gap: clamp(15px, 2.5vw, 25px);
  flex-wrap: wrap;
  justify-content: center;
}

.directive-passage {
  color: #d1d5db;
  text-decoration: none;
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 600;
  position: relative;
  transition: color 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: passageAscend 1s ease-out forwards;
}

.directive-passage:nth-child(1) { animation-delay: 0.9s; }
.directive-passage:nth-child(2) { animation-delay: 1s; }
.directive-passage:nth-child(3) { animation-delay: 1.1s; }
.directive-passage:nth-child(4) { animation-delay: 1.2s; }

.directive-passage::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.4s ease;
}

.directive-passage:hover {
  color: #93c5fd;
}

.directive-passage:hover::before {
  width: 100%;
}

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

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

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

@keyframes manifestoReveal {
  to {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
  }
}

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

@keyframes subtleGlow {
  0% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1.05);
  }
  100% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .imperial-foundation-citadel {
    padding: 60px 0;
  }

  .regal-information-vault {
    margin-bottom: 40px;
  }

  .stately-disclosure-chamber {
    gap: 20px;
    margin-bottom: 40px;
  }

  .disclosure-manifesto {
    padding: 20px;
  }

  .manifesto-title {
    font-size: clamp(17px, 2.6vw, 20px);
  }

  .manifesto-text {
    font-size: clamp(13px, 2vw, 15px);
  }

  .vault-copyright {
    font-size: clamp(13px, 2vw, 15px);
  }

  .directive-passage {
    font-size: clamp(13px, 2vw, 15px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .imperial-foundation-citadel {
    padding: 50px 0;
  }

  .regal-information-vault {
    gap: 20px;
    margin-bottom: 30px;
  }

  .sovereign-brand-insignia {
    width: 70px;
  }

  .exalted-contact-conduit {
    gap: 10px;
  }

  .conduit-link {
    font-size: 14px;
  }

  .stately-disclosure-chamber {
    gap: 15px;
    margin-bottom: 30px;
  }

  .disclosure-manifesto {
    padding: 15px;
  }

  .manifesto-title {
    font-size: 16px;
  }

  .manifesto-text {
    font-size: 13px;
  }

  .vault-copyright {
    font-size: 13px;
  }

  .directive-navigation {
    gap: 10px;
  }

  .directive-passage {
    font-size: 13px;
  }
}

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