@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://glavendraxilo.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://glavendraxilo.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 */
.notify-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
  padding: 5px 0;
  position: relative;
  overflow: hidden;
}

.notify-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #d1d5db, transparent);
  opacity: 0.8;
}

.disclosure-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(209, 213, 219, 0.5);
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.98);
  animation: elegantReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transition: box-shadow 0.4s ease;
}

.disclosure-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(209, 213, 219, 0.7);
}

.disclosure-text {
  color: #374151;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.8;
  margin: 0 0 10px;
  position: relative;
}

.disclosure-emphasis {
  color: #1f2937;
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 15px;
  position: relative;
  padding: 10px 0;
}

.disclosure-emphasis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #9ca3af;
  opacity: 0.6;
}

.disclosure-emphasis::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #9ca3af;
  opacity: 0.6;
}

.disclosure-text a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  background-image: linear-gradient(to right, #2563eb, #2563eb);
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: 0 100%;
  transition: background-size 0.4s ease, color 0.4s ease;
}

.disclosure-text a:hover {
  color: #1e40af;
  background-size: 100% 2px;
}

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

@media (max-width: 768px) {
  .notify-section {
    padding: 5px 0;
  }

  .disclosure-card {
    padding: 10px 25px;
    border-radius: 10px;
  }

  .disclosure-text {
    font-size: clamp(14px, 1.5vw, 15px);
    margin-bottom: 12px;
  }

  .disclosure-emphasis {
    font-size: clamp(15px, 1.6vw, 16px);
    margin-bottom: 12px;
    padding: 8px 0;
  }

  .disclosure-emphasis::before,
  .disclosure-emphasis::after {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .disclosure-text {
    font-size: 14px;
  }

  .disclosure-emphasis {
    font-size: 15px;
  }
}

/* header */

.header-section {
  background: #ffffff;
  border-bottom: 1px solid rgba(209, 213, 219, 0.5);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.4s ease, border-bottom 0.4s ease;
}

.header-section.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(209, 213, 219, 0.3);
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 30px);
  opacity: 0;
  transform: translateY(-15px);
  animation: subtleEntrance 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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

.company-emblem:hover {
  transform: rotate(5deg) scale(1.05);
}

.emblem-visual {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.primary-navigation .navigation-items {
  display: none;
}

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

.navigation-entry {
  position: relative;
}

.navigation-anchor {
  color: #1f2937;
  text-decoration: none;
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s ease;
  position: relative;
}

.navigation-anchor::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #2563eb, #1e40af);
  transition: width 0.4s ease;
}

.navigation-anchor:hover {
  color: #2563eb;
}

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

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

.initiate-button {
  display: inline-block;
  padding: 12px 25px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 1.7vw, 17px);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
  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;
  transform: scale(0);
}

.initiate-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

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

.nav-activator {
  flex-shrink: 0;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.nav-activator span,
.nav-activator::before,
.nav-activator::after {
  width: 100%;
  height: 3px;
  background: #1f2937;
  transition: all 0.4s ease;
}

.nav-activator::before,
.nav-activator::after {
  content: '';
}

.nav-activator span {
  transform-origin: center;
}

.nav-activator.is-open::before {
  transform: translateY(10.5px) rotate(45deg);
}

.nav-activator.is-open::after {
  transform: translateY(-10.5px) rotate(-45deg);
}

.nav-activator.is-open span {
  opacity: 0;
  transform: scale(0);
}

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

.side-panel-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  padding: 80px 40px 40px;
  z-index: 999;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

.side-panel-menu.visible {
  right: 0;
}

.side-panel-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.side-panel-entry {
  text-align: center;
}

.side-panel-anchor {
  color: #1f2937;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  display: block;
  padding: 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.side-panel-anchor:hover {
  background: #f3f4f6;
  color: #2563eb;
  transform: translateX(10px);
}

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

@media (max-width: 768px) {
  .header-layout {
    gap: 20px;
  }

  .initiate-button {
    padding: 10px 20px;
    font-size: clamp(14px, 1.6vw, 15px);
  }

  .company-emblem {
    max-width: 50px;
  }

  .side-panel-menu {
    width: 80vw;
    padding: 60px 30px 30px;
  }

  .side-panel-anchor {
    font-size: 18px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .header-layout {
    gap: 15px;
  }

  .initiate-button {
    padding: 8px 15px;
    font-size: 14px;
  }
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(209, 213, 219, 0.2) 0%, transparent 70%);
  opacity: 0.5;
  z-index: 0;
}

.prestige-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(209, 213, 219, 0.4);
  opacity: 0;
  transform: translateY(30px);
  animation: gracefulAscend 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  transition: box-shadow 0.5s ease;
}

.prestige-wrapper:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(209, 213, 219, 0.6);
}

.prestige-heading {
  font-size: clamp(32px, 5.5vw, 48px);
  color: #1f2937;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
}

.prestige-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #2563eb, #1e40af);
  opacity: 0;
  animation: lineExpand 1.5s ease-out 0.3s forwards;
}

.prestige-overview {
  font-size: clamp(16px, 2vw, 18px);
  color: #4b5563;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0;
  animation: textReveal 1.2s ease-out 0.6s forwards;
}

.prestige-initiate {
  display: inline-block;
  padding: 14px 32px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 17px);
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: textReveal 1.2s ease-out 0.9s forwards;
}

.prestige-initiate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.prestige-initiate:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.prestige-initiate:hover::before {
  transform: translateX(100%);
}

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

@keyframes lineExpand {
  to {
    opacity: 1;
    width: 120px;
  }
}

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

@media (max-width: 768px) {
  .hero-section {
    padding: clamp(80px, 15vh, 120px) 0;
  }

  .prestige-wrapper {
    padding: 30px 40px;
    border-radius: 12px;
  }

  .prestige-heading {
    font-size: clamp(28px, 7vw, 36px);
  }

  .prestige-overview {
    font-size: clamp(15px, 2.5vw, 16px);
  }

  .prestige-initiate {
    padding: 12px 28px;
    font-size: clamp(14px, 2vw, 15px);
  }

  .prestige-heading::after {
    width: 60px;
    bottom: -8px;
  }

  @keyframes lineExpand {
    to {
      opacity: 1;
      width: 100px;
    }
  }
}

@media (max-width: 480px) {
  .prestige-wrapper {
    padding: 25px 30px;
  }

  .prestige-heading {
    font-size: 28px;
  }

  .prestige-overview {
    font-size: 15px;
  }
}

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

.rating-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: clamp(20px, 5vw, 40px) 0;
    max-width: 960px;
    border-radius: 30px;
    margin: -36px auto 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

@media screen and (max-width: 768px) {
    .rating-section {
        margin-top: 0;
    }
}

.rating-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(10px, 3vw, 20px);
}

@media screen and (max-width: 768px) {
    .rating-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        gap: 15px;
    }
}

@media screen and (max-width: 360px) {
    .rating-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.rating-item {
    background: #ffffff;
    padding: clamp(12px, 3vw, 20px);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.rating-item:nth-child(1) {
    animation-delay: 0.1s;
}

.rating-item:nth-child(2) {
    animation-delay: 0.2s;
}

.rating-item:nth-child(3) {
    animation-delay: 0.3s;
}

.rating-item:nth-child(4) {
    animation-delay: 0.4s;
}

.rating-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 1200px) {
    .rating-item {
        min-height: 110px;
        max-width: 170px;
        width: 100%;
    }
}

@media screen and (max-width: 360px) {
    .rating-item {
        min-height: 100px;
        max-width: 100%;
    }
}

.rating-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating-header img {
    height: clamp(22px, 3vw, 26px);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.rating-header:hover img {
    transform: scale(1.1);
}

.rating-header span {
    font-size: clamp(13px, 1.8vw, 15px);
    font-weight: 500;
    color: #2a2a4e;
}

@media screen and (max-width: 1200px) {
    .rating-header span {
        font-size: 13px;
    }
}

@media screen and (max-width: 360px) {
    .rating-header span {
        font-size: 12px;
    }
}

.rating-body {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-body span {
    margin-right: 8px;
    font-weight: 700;
    font-size: clamp(18px, 3vw, 24px);
    color: #2a2a4e;
}

@media screen and (max-width: 1200px) {
    .rating-body span {
        font-size: 18px;
    }
}

@media screen and (max-width: 360px) {
    .rating-body span {
        font-size: 16px;
    }
}

.rating-body svg {
    color: #ffd700;
    width: clamp(14px, 2vw, 18px);
    height: clamp(14px, 2vw, 18px);
    transition: transform 0.3s ease, color 0.3s ease;
}

.rating-body svg:hover {
    transform: scale(1.2);
    color: #ffac00;
}

.rating-item:nth-child(1) svg {
    color: #2962ff;
}

.rating-item:nth-child(4) svg {
    color: #01b57a;
}

@media screen and (max-width: 360px) {
    .rating-body svg {
        width: 14px;
        height: 14px;
    }
}

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

/* Specific adjustments for 320-360px */
@media screen and (min-width: 320px) and (max-width: 360px) {
    .rating-section {
        padding: 15px 0;
    }
    .rating-grid {
        gap: 8px;
    }
    .rating-item {
        padding: 10px;
        min-height: 90px;
    }
    .rating-header {
        gap: 6px;
        margin-bottom: 8px;
    }
    .rating-header img {
        height: 20px;
    }
    .rating-body {
        gap: 3px;
    }
}

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

.about-section {
  background: #f9fafb;
  padding: clamp(60px, 12vh, 100px) 0;
  position: relative;
  overflow: hidden;
}

.about-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent 50%, rgba(255, 255, 255, 0.8));
  opacity: 0.3;
  z-index: 0;
}

.elite-introduction {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.elite-caption {
  font-size: clamp(30px, 4.5vw, 42px);
  color: #111827;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  opacity: 0;
  transform: scale(0.95);
  animation: captionUnveil 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.elite-caption::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #1e40af;
  transition: width 0.6s ease;
  animation: borderGrow 1.2s ease-out 0.2s forwards;
}

.elite-collection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(25px, 4vw, 40px);
  position: relative;
  z-index: 1;
}

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

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

@media (min-width: 320px) and (max-width: 360px) {
  .elite-collection {
    gap: 20px;
  }
}

.elite-feature {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: featureRise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

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

.elite-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.elite-visual {
  margin: 0;
  overflow: hidden;
}

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

.elite-feature:hover .elite-visual img {
  transform: scale(1.08);
}

@media (min-width: 320px) and (max-width: 360px) {
  .elite-visual img {
    height: 200px;
  }
}

.elite-feature-title {
  font-size: clamp(22px, 2.8vw, 26px);
  color: #1f2937;
  font-weight: 600;
  padding: 20px 25px 10px;
  margin: 0;
}

@media (min-width: 320px) and (max-width: 360px) {
  .elite-feature-title {
    font-size: 20px;
    padding: 15px 20px 8px;
  }
}

.elite-feature-summary {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #374151;
  line-height: 1.7;
  padding: 0 25px 25px;
  margin: 0;
}

@media (min-width: 320px) and (max-width: 360px) {
  .elite-feature-summary {
    font-size: 14px;
    padding: 0 20px 20px;
  }
}

.elite-engagement {
  display: block;
  max-width: 200px;
  margin: 40px auto 0;
  padding: 14px 30px;
  background: linear-gradient(to right, #1e40af, #2563eb);
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(16px, 1.9vw, 18px);
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(30, 64, 175, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  z-index: 100;
  animation: featureRise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.7s forwards;
}

.elite-engagement::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.6s ease;
}

.elite-engagement:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

.elite-engagement:hover::before {
  left: 100%;
}

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

@keyframes borderGrow {
  to {
    width: 150px;
  }
}

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

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }

  .elite-introduction {
    margin-bottom: 40px;
  }

  .elite-caption {
    font-size: clamp(26px, 5.5vw, 34px);
    padding-bottom: 12px;
  }

  .elite-caption::before {
    height: 3px;
  }

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

  .elite-engagement {
    max-width: 180px;
    padding: 12px 25px;
    font-size: clamp(15px, 2vw, 16px);
    margin-top: 30px;
  }
}

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

  .elite-caption {
    font-size: 24px;
  }

  .elite-engagement {
    max-width: 160px;
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 20px;
  }
}


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

.service-section {
  background: linear-gradient(to top, #ffffff 0%, #f3f4f6 100%);
  padding: clamp(70px, 14vh, 120px) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(209, 213, 219, 0.5);
}

.service-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  z-index: 0;
}

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

.executive-title {
  font-size: clamp(32px, 5vw, 44px);
  color: #111827;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(-25px);
  animation: titleDescend 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.executive-subtitle {
  font-size: clamp(17px, 2.2vw, 19px);
  color: #4b5563;
  font-weight: 400;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  animation: subtitleFade 1.2s ease-out 0.3s forwards;
}

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

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

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

@media (min-width: 320px) and (max-width: 360px) {
  .executive-portfolio {
    gap: 25px;
  }
}

.executive-asset {
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(30px, 4vw, 40px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: scale(0.97);
  animation: assetExpand 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.executive-asset:nth-child(1) { animation-delay: 0.1s; }
.executive-asset:nth-child(2) { animation-delay: 0.2s; }
.executive-asset:nth-child(3) { animation-delay: 0.3s; }
.executive-asset:nth-child(4) { animation-delay: 0.4s; }

.executive-asset:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .executive-asset {
    padding: 25px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .executive-asset {
    padding: 20px;
  }
}

.asset-emblem {
  margin-bottom: 25px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  transition: background 0.4s ease;
}

.executive-asset:hover .asset-emblem {
  background: rgba(37, 99, 235, 0.2);
}

.asset-emblem svg {
  color: #2563eb;
  width: 30px;
  height: 30px;
  transition: transform 0.4s ease;
}

.executive-asset:hover .asset-emblem svg {
  transform: rotate(15deg);
}

.asset-caption {
  font-size: clamp(21px, 2.6vw, 25px);
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (min-width: 320px) and (max-width: 360px) {
  .asset-caption {
    font-size: 19px;
  }
}

.asset-narrative {
  font-size: clamp(15px, 1.9vw, 17px);
  color: #374151;
  line-height: 1.7;
}

@media (min-width: 320px) and (max-width: 360px) {
  .asset-narrative {
    font-size: 14px;
  }
}

.executive-highlight {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 60px);
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(-30px);
  animation: highlightSlide 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

@media (max-width: 768px) {
  .executive-highlight {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .executive-highlight {
    gap: 20px;
    padding: 20px;
  }
}

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

.highlight-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.executive-highlight:hover .highlight-visual img {
  transform: scale(1.06);
}

.highlight-insight {
  flex: 1;
}

.insight-heading {
  font-size: clamp(30px, 4.5vw, 38px);
  color: #111827;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.insight-heading span {
  color: #2563eb;
  display: block;
}

@media (min-width: 320px) and (max-width: 360px) {
  .insight-heading {
    font-size: 26px;
  }
}

.insight-description {
  font-size: clamp(16px, 2.1vw, 18px);
  color: #4b5563;
  line-height: 1.8;
  max-width: 500px;
}

@media (min-width: 320px) and (max-width: 360px) {
  .insight-description {
    font-size: 15px;
  }
}

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

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

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

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

@media (max-width: 768px) {
  .service-section {
    padding: 60px 0;
  }

  .executive-overview {
    margin-bottom: 50px;
  }

  .executive-title {
    font-size: clamp(28px, 6vw, 36px);
  }

  .executive-subtitle {
    font-size: clamp(16px, 2.5vw, 18px);
  }

  .executive-portfolio {
    margin-bottom: 50px;
  }
}

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

  .executive-title {
    font-size: 26px;
  }

  .executive-subtitle {
    font-size: 15px;
  }
}

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

.help-section {
  background: #ffffff;
  padding: clamp(80px, 16vh, 140px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(209, 213, 219, 0.3);
}

.help-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(243, 244, 246, 0.8), transparent);
  z-index: 0;
}

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

.portal-header {
  font-size: clamp(34px, 5.5vw, 46px);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: headerLift 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.portal-intro {
  font-size: clamp(18px, 2.3vw, 20px);
  color: #475569;
  font-weight: 400;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  animation: introAppear 1.3s ease-out 0.4s forwards;
}

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

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

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

@media (min-width: 320px) and (max-width: 360px) {
  .guidance-array {
    gap: 30px;
  }
}

.guidance-module {
  background: #f9fafb;
  border-radius: 28px;
  padding: clamp(35px, 5vw, 45px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: moduleAscend 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  display: flex;
  flex-direction: column;
}

.guidance-module:nth-child(1) { animation-delay: 0.1s; }
.guidance-module:nth-child(2) { animation-delay: 0.2s; }
.guidance-module:nth-child(3) { animation-delay: 0.3s; }
.guidance-module:nth-child(4) { animation-delay: 0.4s; }
.guidance-module:nth-child(5) { animation-delay: 0.5s; }

.guidance-module:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.module-featured {
  grid-column: span 1;
}

@media (max-width: 1200px) {
  .module-featured {
    grid-column: span 1;
  }
}

.module-title {
  font-size: clamp(23px, 2.9vw, 27px);
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (min-width: 320px) and (max-width: 360px) {
  .module-title {
    font-size: 21px;
  }
}

.module-excerpt {
  font-size: clamp(16px, 2vw, 18px);
  color: #475569;
  line-height: 1.8;
  flex-grow: 1;
}

@media (min-width: 320px) and (max-width: 360px) {
  .module-excerpt {
    font-size: 15px;
  }
}

.module-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 30px;
  background: #1d4ed8;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(29, 78, 216, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.module-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.module-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.35);
}

.module-cta:hover::before {
  transform: translateX(100%);
}

.module-cta svg {
  width: 22px;
  height: 22px;
  transform: rotate(-90deg);
  transition: transform 0.4s ease;
}

.module-cta:hover svg {
  transform: rotate(-90deg) translateX(6px);
}

@media (min-width: 320px) and (max-width: 360px) {
  .module-cta {
    padding: 12px 25px;
    font-size: 15px;
  }

  .module-cta svg {
    width: 20px;
    height: 20px;
  }
}

.portal-launch {
  display: block;
  max-width: 220px;
  margin: 50px auto 0;
  padding: 16px 35px;
  background: linear-gradient(to right, #1d4ed8, #3b82f6);
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(17px, 2vw, 19px);
  text-align: center;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(29, 78, 216, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  z-index: 100;
  animation: launchReveal 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s forwards;
}

.portal-launch::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.7s ease;
}

.portal-launch:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.4);
}

.portal-launch:hover::before {
  left: 100%;
}

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

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

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

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

@media (max-width: 768px) {
  .help-section {
    padding: 70px 0;
  }

  .guidance-portal {
    margin-bottom: 60px;
  }

  .portal-header {
    font-size: clamp(30px, 7vw, 38px);
  }

  .portal-intro {
    font-size: clamp(17px, 2.8vw, 19px);
  }

  .guidance-array {
    margin-bottom: 40px;
  }

  .portal-launch {
    max-width: 200px;
    padding: 14px 30px;
    font-size: clamp(16px, 2.2vw, 18px);
    margin-top: 40px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .help-section {
    padding: 60px 0;
  }

  .portal-header {
    font-size: 28px;
  }

  .portal-intro {
    font-size: 16px;
  }

  .portal-launch {
    max-width: 180px;
    padding: 12px 25px;
    font-size: 16px;
    margin-top: 30px;
  }
}


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

.join-section {
  background: linear-gradient(to bottom, #f3f4f6 0%, #ffffff 100%);
  padding: clamp(40px, 8vh, 60px) 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.join-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.08) 0%, transparent 80%);
  z-index: 0;
}

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

.hub-title {
  font-size: clamp(30px, 4.8vw, 42px);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  opacity: 0;
  transform: scale(0.96);
  animation: titleBloom 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hub-overview {
  font-size: clamp(17px, 2.1vw, 19px);
  color: #475569;
  font-weight: 400;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto;
  opacity: 0;
  animation: overviewUnfold 1.4s ease-out 0.3s forwards;
}

.enrollment-portal {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(30px, 4vw, 40px);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(209, 213, 219, 0.5);
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 3.5vw, 35px);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  animation: portalRise 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s forwards;
}

.portal-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(25px);
  animation: fieldEmerge 0.9s ease-out forwards;
}

.portal-field:nth-child(1) { animation-delay: 0.6s; }
.portal-field:nth-child(2) { animation-delay: 0.7s; }
.portal-field:nth-child(3) { animation-delay: 0.8s; }
.portal-field:nth-child(4) { animation-delay: 0.9s; }

.portal-field label {
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 500;
  color: #1e293b;
}

.portal-entry,
.portal-message {
  padding: 14px 20px;
  border: 1px solid rgba(209, 213, 219, 0.8);
  border-radius: 10px;
  font-size: clamp(15px, 1.9vw, 17px);
  background: #f9fafb;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.portal-entry:focus,
.portal-message:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
  outline: none;
}

.portal-message {
  resize: vertical;
  min-height: 140px;
}

.portal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(25px);
  animation: fieldEmerge 0.9s ease-out 1s forwards;
}

.footer-notice {
  font-size: clamp(13px, 1.7vw, 15px);
  color: #6b7280;
  text-align: center;
  margin: 0;
}

.footer-notice a {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.4s ease;
}

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

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

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

.portal-activate {
  max-width: 200px;
  width: 100%;
  padding: 14px 0;
  background: #1d4ed8;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portal-activate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.portal-activate:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(29, 78, 216, 0.3);
}

.portal-activate:hover::before {
  transform: translateX(100%);
}

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

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

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

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

@media (max-width: 768px) {
  .join-section {
    padding: 30px 0;
  }

  .enrollment-hub {
    margin-bottom: 40px;
  }

  .hub-title {
    font-size: clamp(26px, 6.5vw, 34px);
  }

  .hub-overview {
    font-size: clamp(16px, 2.6vw, 18px);
  }

  .enrollment-portal {
    padding: 25px;
  }

  .portal-field label {
    font-size: clamp(14px, 2vw, 16px);
  }

  .portal-entry,
  .portal-message {
    padding: 12px 18px;
    font-size: clamp(14px, 2vw, 16px);
  }

  .portal-message {
    min-height: 120px;
  }

  .footer-notice {
    font-size: clamp(12px, 1.8vw, 14px);
  }

  .portal-activate {
    font-size: clamp(15px, 2.1vw, 17px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .join-section {
    padding: 25px 0;
  }

  .hub-title {
    font-size: 26px;
  }

  .hub-overview {
    font-size: 16px;
  }

  .enrollment-portal {
    padding: 20px;
    gap: 20px;
  }

  .portal-field {
    gap: 8px;
  }

  .portal-entry,
  .portal-message {
    padding: 10px 16px;
    font-size: 14px;
  }

  .portal-message {
    min-height: 100px;
  }

  .footer-notice {
    font-size: 12px;
  }

  .portal-activate {
    padding: 12px 0;
    font-size: 15px;
    max-width: 180px;
  }
}


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

.footer-section {
  background: #0f172a;
  padding: clamp(50px, 10vh, 80px) 0;
  position: relative;
  overflow: hidden;
}

.footer-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom center, rgba(30, 58, 138, 0.2) 0%, transparent 70%);
  opacity: 0.7;
  z-index: 0;
}

.corporate-connections {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: connectionsFade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@media (max-width: 768px) {
  .corporate-connections {
    flex-direction: column;
    gap: 30px;
  }
}

.connection-emblem {
  width: 80px;
  display: block;
  transition: transform 0.5s ease;
}

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

.emblem-image {
  width: 100%;
  height: auto;
  filter: brightness(1.2);
}

.connection-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.detail-contact {
  color: #d1d5db;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  position: relative;
  transition: color 0.4s ease;
}

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

.detail-contact:hover {
  color: #3b82f6;
}

.detail-contact:hover::after {
  width: 100%;
}

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

@media (max-width: 768px) {
  .corporate-advisory {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

.advisory-notice {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: noticeElevate 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

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

.advisory-notice:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.notice-header {
  font-size: clamp(20px, 2.5vw, 22px);
  color: #f3f4f6;
  font-weight: 600;
  margin-bottom: 12px;
}

.notice-body {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #9ca3af;
  line-height: 1.7;
}

.notice-body strong {
  color: #f3f4f6;
  font-weight: 700;
}

.notice-body a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.4s ease;
}

.notice-body a:hover {
  color: #3b82f6;
}

.advisory-certification {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: noticeElevate 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s forwards;
}

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

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

.certification-info {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 20px;
}

.certification-access {
  display: inline-block;
  padding: 12px 25px;
  background: #1d4ed8;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.certification-access:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(29, 78, 216, 0.35);
}

.certification-access:hover::before {
  left: 100%;
}

.corporate-closure {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(209, 213, 219, 0.2);
  padding-top: 30px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: closureAppear 1.2s ease-out 0.6s forwards;
}

@media (max-width: 1200px) {
  .corporate-closure {
    flex-direction: column;
    gap: 25px;
  }
}

.closure-rights {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #9ca3af;
}

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

@media (max-width: 480px) {
  .closure-navigation {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.navigation-option {
  opacity: 0;
  transform: translateY(20px);
  animation: optionFade 0.8s ease-out forwards;
}

.navigation-option:nth-child(1) { animation-delay: 0.7s; }
.navigation-option:nth-child(2) { animation-delay: 0.8s; }
.navigation-option:nth-child(3) { animation-delay: 0.9s; }
.navigation-option:nth-child(4) { animation-delay: 1s; }

.option-link {
  color: #d1d5db;
  text-decoration: none;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  position: relative;
  transition: color 0.4s ease;
}

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

.option-link:hover {
  color: #3b82f6;
}

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

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

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

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

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

@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0;
  }

  .corporate-connections {
    margin-bottom: 50px;
  }

  .corporate-advisory {
    margin-bottom: 50px;
  }

  .advisory-notice {
    padding: 20px 25px;
  }

  .advisory-certification {
    padding: 20px 25px;
  }

  .certification-access {
    padding: 10px 20px;
    font-size: clamp(14px, 2vw, 16px);
  }

  .corporate-closure {
    padding-top: 25px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .footer-section {
    padding: 30px 0;
  }

  .notice-header {
    font-size: 18px;
  }

  .notice-body {
    font-size: 14px;
  }

  .certification-info {
    font-size: 14px;
  }

  .certification-access {
    font-size: 14px;
  }

  .closure-rights {
    font-size: 14px;
  }

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

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