@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://drimelquovari.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://drimelquovari.com/fonts/Gilroy-Regular.woff2") format("woff2");
}
:root {
  --light-color: #ffffff;
  --dark-color: #000000;
  --primary-color: #123453;
  --accent-color: #bc8c62;
  --warning-color: red;
}

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

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

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

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

html {
  scroll-behavior: smooth;
}

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

body.lock {
  overflow: hidden;
}

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

a {
  transition: all 0.3s ease;
}

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

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


/* 1 */
.risk-disclosure {
  background-color: #f9f9fb;
  border-left: 5px solid #b5965e;
  padding: 5px 0;
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.risk-disclosure:hover {
  background-color: #f0f0f4;
  border-left-color: #a07d3f;
}

.disclosure-inner {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.7s ease-in-out 0.2s forwards;
}

.disclosure-text {
  color: #2c3e50;
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.7;
  margin: 0 0 5px;
  position: relative;
  transition: color 0.3s ease;
}

.disclosure-text:hover {
  color: #1a2835;
}

.disclosure-emphasis {
  background-color: rgba(255, 245, 230, 0.8);
  color: #c0392b;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  padding: 10px 20px;
  margin: 0 auto 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disclosure-emphasis:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

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

.disclosure-text a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #2980b9, transparent);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.disclosure-text a:hover::after {
  transform: scaleX(1);
}

.disclosure-text a:hover {
  color: #21618c;
}

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

@media (max-width: 768px) {
  .disclosure-inner {
    max-width: 95%;
  }
  
  .disclosure-text {
    font-size: clamp(12px, 1.5vw, 14px);
  }
  
  .disclosure-emphasis {
    font-size: clamp(13px, 1.6vw, 16px);
    padding: 8px 15px;
  }
}

/* header */

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

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

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(15px, 3vw, 25px);
  opacity: 0;
  transform: translateY(-15px);
  animation: headerFadeIn 0.8s ease-out forwards;
}

.logo-link {
  max-width: 50px;
  width: 100%;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.logo-image {
  width: 100%;
  height: auto;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 30px);
}

.start-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 16px);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.start-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
}

.start-button:hover::before {
  top: 0;
  left: 0;
}

.desktop-nav .nav-list {
  display: none;
}

@media screen and (min-width: 1200px) {
  .desktop-nav .nav-list {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 30px);
  }
}

.nav-item {
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #3b82f6, #60a5fa);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

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

.burger {
  flex-shrink: 0;
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.burger:hover {
  transform: scale(1.1);
}

.burger::before,
.burger::after,
.burger span {
  width: 100%;
  height: 3px;
  background-color: #e2e8f0;
  transition: all 0.4s ease;
}

.burger::before {
  content: "";
}

.burger::after {
  content: "";
}

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

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

.burger.is-open span {
  opacity: 0;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-inner {
  text-align: center;
  padding: 20px;
  animation: mobileFadeIn 0.6s ease-out;
}

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

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

.mobile-nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease, left 0.3s ease;
}

.mobile-nav-link:hover {
  color: #ffffff;
  transform: scale(1.05);
}

.mobile-nav-link:hover::after {
  width: 100%;
  left: 0;
}

.mobile-start-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-start-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
}

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

@keyframes mobileFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-wrapper {
    gap: 15px;
  }
  .start-button {
    padding: 8px 15px;
    font-size: clamp(12px, 1.6vw, 14px);
  }
  .logo-link {
    max-width: 50px;
  }
}

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

.premier-banner {
  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;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.6s ease;
}

.premier-banner:hover {
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
}

.premier-banner::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0.5) 100%);
  z-index: -1;
  opacity: 0.85;
  transition: opacity 0.6s ease;
}

.premier-banner:hover::after {
  opacity: 0.95;
}

.banner-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

.banner-heading {
  font-size: clamp(38px, 6.5vw, 60px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(40px);
  animation: riseUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.banner-overview {
  font-size: clamp(17px, 2.6vw, 21px);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0;
  transform: translateY(40px);
  animation: riseUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.banner-call-to-action {
  display: inline-block;
  padding: 14px 32px;
  color: #ffffff;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: riseUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards;
  max-width: 250px;
}

.banner-call-to-action::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  transition: opacity 0.6s ease;
  opacity: 0;
  z-index: 1;
}

.banner-call-to-action:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(30, 58, 138, 0.5);
}

.banner-call-to-action:hover::before {
  opacity: 1;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner-heading {
    font-size: clamp(30px, 8.5vw, 42px);
    text-align: center;
  }
  .banner-overview {
    font-size: clamp(15px, 3.2vw, 19px);
    text-align: center;
  }
  .banner-wrapper {
    text-align: center;
  }
  .banner-call-to-action {
    padding: 12px 28px;
    font-size: clamp(13px, 2.2vw, 15px);
    margin: 0 auto;
    display: block;
  }
}

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

.prestige-reviews {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  padding: clamp(25px, 6vw, 50px) 0;
  max-width: 1000px;
  border-radius: 20px;
  margin: -40px auto 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.4s ease;
}

.prestige-reviews:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

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

.reviews-layout {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: clamp(15px, 4vw, 25px);
}

@media screen and (max-width: 768px) {
  .reviews-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

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

.review-card {
  background: #ffffff;
  padding: clamp(15px, 4vw, 25px);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 130px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
  animation: scaleIn 0.9s ease-in-out forwards;
}

.review-card:nth-child(1) {
  animation-delay: 0.15s;
}

.review-card:nth-child(2) {
  animation-delay: 0.3s;
}

.review-card:nth-child(3) {
  animation-delay: 0.45s;
}

.review-card:nth-child(4) {
  animation-delay: 0.6s;
}

.review-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1200px) {
  .review-card {
    min-height: 120px;
    max-width: 180px;
    width: 100%;
  }
}

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

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

.review-icon {
  height: clamp(24px, 3.5vw, 28px);
  object-fit: contain;
  transition: filter 0.4s ease;
}

.review-card:hover .review-icon {
  filter: brightness(1.1);
}

.review-label {
  font-size: clamp(14px, 1.9vw, 16px);
  font-weight: 600;
  color: #1e3a8a;
}

@media screen and (max-width: 1200px) {
  .review-label {
    font-size: 14px;
  }
}

@media screen and (max-width: 360px) {
  .review-label {
    font-size: 13px;
  }
}

.review-content {
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-score {
  margin-right: 10px;
  font-weight: 800;
  font-size: clamp(20px, 3.5vw, 26px);
  color: #1e3a8a;
}

@media screen and (max-width: 1200px) {
  .review-score {
    font-size: 20px;
  }
}

@media screen and (max-width: 360px) {
  .review-score {
    font-size: 18px;
  }
}

.review-stars {
  display: flex;
  gap: 5px;
}

.star-icon {
  color: #fbbf24;
  width: clamp(16px, 2.5vw, 20px);
  height: clamp(16px, 2.5vw, 20px);
  transition: transform 0.4s ease, color 0.4s ease;
}

.review-card:hover .star-icon {
  transform: rotate(15deg) scale(1.15);
  color: #f59e0b;
}

.review-card:nth-child(1) .star-icon {
  color: #3b82f6;
}

.review-card:nth-child(4) .star-icon {
  color: #10b981;
}

@media screen and (max-width: 360px) {
  .star-icon {
    width: 16px;
    height: 16px;
  }
}

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

/* Specific adjustments for 320-360px */
@media screen and (min-width: 320px) and (max-width: 360px) {
  .prestige-reviews {
    padding: 20px 0;
  }
  .reviews-layout {
    gap: 10px;
  }
  .review-card {
    padding: 12px;
    min-height: 100px;
  }
  .review-top {
    gap: 8px;
    margin-bottom: 10px;
  }
  .review-icon {
    height: 22px;
  }
  .review-content {
    gap: 4px;
  }
}

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

.prime-benefits {
  padding: clamp(80px, 16vh, 140px) 0;
  background: linear-gradient(90deg, #1f2937 0%, #374151 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.prime-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  z-index: 0;
  animation: pulseGlow 12s ease-in-out infinite alternate;
}

.benefits-header {
  text-align: center;
  margin-bottom: clamp(40px, 8vw, 60px);
  position: relative;
  z-index: 1;
}

.benefits-main-title {
  font-size: clamp(34px, 6.5vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(60px);
  animation: floatIn 1.3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.benefits-subtitle {
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 300;
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  animation: floatIn 1.3s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
}

.benefits-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 30px);
  justify-content: center;
  margin-bottom: clamp(40px, 8vw, 60px);
  position: relative;
  z-index: 1;
}

.benefit-card {
  flex: 1 1 calc(33.333% - clamp(20px, 4vw, 30px));
  min-width: 280px;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 25px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
  opacity: 0;
  transform: translateY(50px) scale(0.98);
  animation: cardFloat 1.1s ease-out forwards;
}

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

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.icon-image {
  width: clamp(160px, 10vw, 80px);
  height: clamp(160px, 10vw, 80px);
  object-fit: contain;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.benefit-card:hover .icon-image {
  transform: rotate(5deg) scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.card-content {
  text-align: center;
}

.card-title {
  font-size: clamp(20px, 2.6vw, 24px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  transition: color 0.4s ease;
}

.benefit-card:hover .card-title {
  color: #93c5fd;
}

.card-description {
  font-family: "Inter", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  color: #d1d5db;
  line-height: 1.7;
}

.benefits-action {
  text-align: center;
  position: relative;
  z-index: 1;
}

.benefits-cta {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(16px, 2.1vw, 18px);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: scale(0.9);
  animation: buttonPop 1.2s ease-out 0.9s forwards;
}

.benefits-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.7s ease, height 0.7s ease;
  z-index: 1;
}

.benefits-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
}

.benefits-cta:hover::before {
  width: 400%;
  height: 400%;
}

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

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

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

@keyframes pulseGlow {
  to {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .benefit-card {
    flex: 1 1 calc(50% - clamp(20px, 4vw, 30px));
  }
}

@media (max-width: 768px) {
  .prime-benefits {
    padding: 60px 0;
  }
  .benefits-main-title {
    font-size: clamp(28px, 7vw, 36px);
  }
  .benefits-subtitle {
    font-size: clamp(14px, 2.4vw, 16px);
  }
  .benefit-card {
    flex: 1 1 100%;
    max-width: 500px;
  }
  .benefits-cta {
    padding: 14px 30px;
    font-size: clamp(14px, 2.2vw, 16px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .prime-benefits {
    padding: 50px 0;
  }
  .benefits-main-title {
    font-size: clamp(24px, 6.5vw, 32px);
  }
  .benefits-subtitle {
    font-size: 14px;
  }
  .benefit-card {
    min-width: 100%;
    padding: 15px;
  }
  .icon-image {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
  }
  .card-title {
    font-size: clamp(18px, 2.4vw, 20px);
  }
  .card-description {
    font-size: clamp(13px, 1.8vw, 14px);
  }
  .benefits-cta {
    padding: 12px 24px;
    font-size: 14px;
  }
}

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

.premium-services {
  padding: clamp(60px, 12vh, 100px) 0;
  background: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
  color: #1f2937;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.05);
  border-top: 1px solid #d1d5db;
  border-bottom: 1px solid #d1d5db;
}

.premium-services::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(165, 180, 252, 0.1) 0%, transparent 80%);
  z-index: 0;
  animation: gentlePulse 8s ease-in-out infinite alternate;
}

.services-intro {
  text-align: center;
  margin-bottom: clamp(30px, 6vw, 50px);
  position: relative;
  z-index: 1;
}

.intro-title {
  font-size: clamp(30px, 5.5vw, 42px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #111827;
  opacity: 0;
  transform: translateY(40px);
  animation: elegantRise 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.intro-desc {
  font-size: clamp(17px, 2.6vw, 19px);
  font-weight: 400;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: elegantRise 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s forwards;
}

.services-array {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(25px, 4.5vw, 35px);
  justify-content: center;
  margin-bottom: clamp(30px, 6vw, 50px);
  position: relative;
  z-index: 1;
}

.service-module {
  flex: 1 1 calc(25% - clamp(25px, 4.5vw, 35px));
  min-width: 250px;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(20px, 3.5vw, 25px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
  opacity: 0;
  transform: translateX(-40px);
  animation: sideSlide 0.8s ease-out forwards;
  border: 1px solid #e5e7eb;
}

.service-module:nth-child(even) {
  transform: translateX(40px);
  animation: sideSlideRight 0.8s ease-out forwards;
}

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

.service-module:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  border-color: #bfdbfe;
}

.module-emblem {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

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

.module-emblem svg {
  color: #2563eb;
  width: 45px;
  height: 45px;
  transition: color 0.4s ease;
}

.service-module:hover .module-emblem svg {
  color: #1d4ed8;
}

.module-head {
  font-size: clamp(19px, 2.4vw, 23px);
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 10px;
}

.module-info {
  font-size: clamp(13px, 1.7vw, 15px);
  color: #4b5563;
  line-height: 1.65;
  text-align: center;
}

.services-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(25px, 4.5vw, 35px);
  align-items: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.97);
  animation: subtleZoom 1s ease-out 0.5s forwards;
}

@media screen and (max-width: 768px) {
  .services-highlight {
    grid-template-columns: 1fr;
  }
}

.highlight-visual {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.4s ease;
}

.services-highlight:hover .highlight-visual {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

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

.services-highlight:hover .highlight-visual img {
  transform: scale(1.04);
}

.highlight-narrative {
  padding: 20px;
}

.narrative-title {
  font-size: clamp(26px, 3.8vw, 34px);
  font-weight: 800;
  color: #111827;
  margin-bottom: 15px;
}

.narrative-body {
  font-size: clamp(15px, 2.1vw, 17px);
  color: #4b5563;
  line-height: 1.75;
}

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

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

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

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

@keyframes gentlePulse {
  to {
    opacity: 0.8;
    transform: scale(1.03);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .premium-services {
    padding: 50px 0;
  }
  .intro-title {
    font-size: clamp(26px, 6.5vw, 34px);
  }
  .intro-desc {
    font-size: clamp(15px, 2.8vw, 17px);
  }
  .service-module {
    padding: 18px;
  }
  .module-head {
    font-size: clamp(17px, 2.2vw, 19px);
  }
  .module-info {
    font-size: clamp(12px, 1.6vw, 13px);
  }
  .narrative-title {
    font-size: clamp(22px, 4.2vw, 28px);
  }
  .narrative-body {
    font-size: clamp(13px, 1.9vw, 15px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .premium-services {
    padding: 40px 0;
  }
  .intro-title {
    font-size: 24px;
  }
  .intro-desc {
    font-size: 14px;
  }
  .services-array {
    gap: 20px;
  }
  .service-module {
    min-width: 100%;
  }
  .module-emblem svg {
    width: 35px;
    height: 35px;
  }
  .module-head {
    font-size: 16px;
  }
  .module-info {
    font-size: 12px;
  }
  .narrative-title {
    font-size: 20px;
  }
  .narrative-body {
    font-size: 13px;
  }
}

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

.novice-resources {
  padding: clamp(70px, 14vh, 110px) 0;
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  position: relative;
  overflow: hidden;
  border-top: 2px solid #e5e7eb;
  border-bottom: 2px solid #e5e7eb;
}

.novice-resources::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(181, 150, 94, 0.1) 0%, transparent 80%);
  z-index: 0;
}

.resources-overview {
  text-align: center;
  margin-bottom: clamp(40px, 7vw, 60px);
  position: relative;
  z-index: 1;
}

.overview-heading {
  font-size: clamp(32px, 5.8vw, 44px);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(50px);
  animation: smoothAscend 1.1s ease-out forwards;
}

.overview-text {
  font-size: clamp(18px, 2.7vw, 20px);
  font-weight: 300;
  color: #475569;
  max-width: 750px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  animation: smoothAscend 1.1s ease-out 0.2s forwards;
}

.resources-collection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(25px, 4.5vw, 35px);
  margin-bottom: clamp(40px, 7vw, 60px);
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .resources-collection {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .resources-collection {
    grid-template-columns: 1fr;
  }
}

.resource-entry {
  background: #ffffff;
  border-radius: 14px;
  padding: clamp(25px, 4vw, 30px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
  animation: entryExpand 0.9s ease-out forwards;
}

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

.resource-entry:hover {
  transform: scale(1.03);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
}

.entry-symbol {
  margin-bottom: 20px;
  text-align: center;
  transition: transform 0.4s ease;
}

.resource-entry:hover .entry-symbol {
  transform: rotate(10deg);
}

.entry-symbol svg {
  width: 50px;
  height: 50px;
}

.entry-details {
  text-align: center;
}

.entry-title {
  font-size: clamp(21px, 2.6vw, 25px);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.entry-summary {
  font-size: clamp(15px, 2.1vw, 17px);
  color: #475569;
  line-height: 1.7;
}

.entry-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.9vw, 16px);
  border-radius: 6px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.entry-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(181, 150, 94, 0.3);
}

.entry-link svg {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
  transition: transform 0.4s ease;
}

.entry-link:hover svg {
  transform: rotate(-90deg) translateX(3px);
}

.resources-callout {
  text-align: center;
  position: relative;
  z-index: 1;
}

.callout-button {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  border-radius: 8px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: smoothAscend 1.1s ease-out 0.6s forwards;
}

.callout-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(181, 150, 94, 0.4);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .novice-resources {
    padding: 60px 0;
  }
  .overview-heading {
    font-size: clamp(28px, 6.5vw, 36px);
  }
  .overview-text {
    font-size: clamp(16px, 2.8vw, 18px);
  }
  .resource-entry {
    padding: 20px;
  }
  .entry-title {
    font-size: clamp(19px, 2.4vw, 21px);
  }
  .entry-summary {
    font-size: clamp(14px, 2vw, 16px);
  }
  .callout-button {
    padding: 12px 24px;
    font-size: clamp(14px, 1.9vw, 16px);
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .novice-resources {
    padding: 50px 0;
  }
  .overview-heading {
    font-size: 26px;
  }
  .overview-text {
    font-size: 15px;
  }
  .resources-collection {
    gap: 20px;
  }
  .entry-symbol svg {
    width: 40px;
    height: 40px;
  }
  .entry-title {
    font-size: 18px;
  }
  .entry-summary {
    font-size: 13px;
  }
  .entry-link {
    padding: 8px 16px;
    font-size: 13px;
  }
  .callout-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

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

.elite-enrollment {
  padding: clamp(80px, 16vh, 130px) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f3f4f6;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.elite-enrollment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(165, 150, 94, 0.15) 0%, transparent 80%);
  z-index: 0;
}

.enrollment-intro {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 50px);
  position: relative;
  z-index: 1;
}

.intro-headline {
  font-size: clamp(34px, 6.2vw, 46px);
  font-weight: 900;
  color: #f9fafb;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(40px);
  animation: ascendElegant 1.2s ease-out forwards;
}

.intro-paragraph {
  font-size: clamp(19px, 2.8vw, 21px);
  font-weight: 300;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: ascendElegant 1.2s ease-out 0.2s forwards;
}

.enrollment-form {
  display: grid;
  gap: clamp(20px, 3vw, 30px);
  background: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: clamp(30px, 5vw, 40px);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.98);
  animation: formExpand 1.3s ease-out 0.4s forwards;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.full-width {
  grid-column: span 2;
}

@media screen and (max-width: 768px) {
  .full-width {
    grid-column: span 1;
  }
}

.group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #e5e7eb;
  font-size: clamp(15px, 2vw, 17px);
}

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

.label-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(181, 150, 94, 0.15);
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.form-group:hover .label-graphic {
  background: rgba(181, 150, 94, 0.25);
  transform: scale(1.05);
}

.group-input,
.group-textarea {
  padding: 16px 20px;
  border: 1px solid rgba(181, 150, 94, 0.2);
  border-radius: 10px;
  font-size: clamp(15px, 2vw, 17px);
  background: rgba(31, 41, 55, 0.5);
  color: #f3f4f6;
  transition: all 0.3s ease;
}

.group-input:focus,
.group-textarea:focus {
  border-color: #b5965e;
  box-shadow: 0 0 0 3px rgba(181, 150, 94, 0.2);
  background: rgba(31, 41, 55, 0.7);
  outline: none;
}

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

.form-notice {
  font-size: clamp(13px, 1.7vw, 15px);
  color: #9ca3af;
  text-align: center;
  line-height: 1.6;
}

.form-notice a {
  color: #b5965e;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

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

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

.form-notice a:hover {
  color: #a07d3f;
}

.form-submit {
  max-width: 220px;
  margin: 0 auto;
  padding: 16px 0;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  color: #1e293b;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(16px, 2.1vw, 18px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(53, 17, 201, 0.3);
}

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

.form-submit:hover::before {
  opacity: 1;
}

.form-submit:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 20px rgba(181, 150, 94, 0.5);
  color: #0f172a;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .elite-enrollment {
    padding: 60px 0;
  }
  .intro-headline {
    font-size: clamp(30px, 6.8vw, 38px);
  }
  .intro-paragraph {
    font-size: clamp(17px, 3vw, 19px);
  }
  .enrollment-form {
    padding: 25px;
    gap: 25px;
  }
  .form-row {
    gap: 25px;
  }
  .group-label {
    font-size: 15px;
  }
  .group-input,
  .group-textarea {
    padding: 14px 18px;
    font-size: 15px;
  }
  .group-textarea {
    min-height: 100px;
  }
  .form-notice {
    font-size: 13px;
  }
  .form-submit {
    padding: 12px 0;
    font-size: 16px;
    max-width: 200px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .elite-enrollment {
    padding: 50px 0;
  }
  .intro-headline {
    font-size: 28px;
  }
  .intro-paragraph {
    font-size: 16px;
  }
  .enrollment-form {
    padding: 20px;
    gap: 20px;
  }
  .form-row {
    gap: 20px;
  }
  .group-label {
    font-size: 14px;
  }
  .group-input,
  .group-textarea {
    padding: 12px 16px;
    font-size: 14px;
  }
  .group-textarea {
    min-height: 80px;
  }
  .form-notice {
    font-size: 12px;
  }
  .form-submit {
    padding: 10px 0;
    font-size: 14px;
    max-width: 180px;
  }
}

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

.prestige-closure {
  padding: clamp(40px, 6vh, 50px) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
  border-top: 2px solid #334155;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.6);
  transition: box-shadow 0.4s ease;
}

.prestige-closure:hover {
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
}

.prestige-closure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 25%, rgba(165, 180, 252, 0.05) 0%, transparent 80%);
  opacity: 0.6;
  z-index: 0;
}

.closure-overview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(25px, 4vw, 35px);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(25px);
  animation: ascendSmooth 0.9s ease-out forwards;
}

@media screen and (max-width: 768px) {
  .closure-overview {
    flex-direction: column;
    align-items: flex-start;
  }
}

.overview-brand {
  transition: transform 0.4s ease;
}

.overview-brand:hover {
  transform: scale(1.06);
}

.brand-emblem {
  width: 80px;
  display: block;
}

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

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

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

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

.contact-phone::after,
.contact-email::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: #b5965e;
  transition: width 0.4s ease;
}

.contact-phone:hover,
.contact-email:hover {
  color: #b5965e;
}

.contact-phone:hover::after,
.contact-email:hover::after {
  width: 100%;
}

.closure-advisory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(25px, 4vw, 35px);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  color: #a1a1aa;
  font-size: clamp(14px, 1.7vw, 15px);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(25px);
  animation: ascendSmooth 0.9s ease-out 0.3s forwards;
}

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

.advisory-section {
  background: rgba(30, 41, 59, 0.8);
  padding: clamp(20px, 3vw, 25px);
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.advisory-section:hover {
  transform: translateY(-6px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.section-caption {
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: 12px;
}

.section-narrative strong {
  color: #f3f4f6;
  font-weight: 700;
}

.section-narrative a {
  color: #b5965e;
  text-decoration: none;
  transition: color 0.4s ease;
}

.section-narrative a:hover {
  color: #a07d3f;
}

.advisory-license {
  grid-column: span 2;
  background: rgba(30, 41, 59, 0.8);
  padding: clamp(20px, 3vw, 25px);
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media screen and (max-width: 1200px) {
  .advisory-license {
    grid-column: span 1;
  }
}

.advisory-license:hover {
  transform: translateY(-6px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.license-caption {
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 700;
  color: #f3f4f6;
  margin-bottom: 12px;
}

.license-narrative {
  margin-bottom: 16px;
}

.license-document {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #b5965e 0%, #a07d3f 100%);
  color: #1e293b;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 16px);
  border-radius: 8px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.license-document:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(181, 150, 94, 0.5);
}

.closure-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(25px, 4vw, 35px);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(25px);
  animation: ascendSmooth 0.9s ease-out 0.5s forwards;
}

@media screen and (max-width: 768px) {
  .closure-base {
    flex-direction: column;
    gap: 20px;
  }
}

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

.base-navigation {
  display: flex;
  gap: clamp(15px, 2vw, 25px);
}

@media screen and (max-width: 768px) {
  .base-navigation {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

.nav-option::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #b5965e;
  transition: width 0.4s ease;
}

.nav-option:hover {
  color: #b5965e;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .prestige-closure {
    padding: 25px 0;
  }
  .closure-overview {
    gap: 20px;
  }
  .overview-contacts {
    gap: 20px;
  }
  .closure-advisory {
    gap: 20px;
  }
  .advisory-section,
  .advisory-license {
    padding: 15px;
  }
  .section-caption,
  .license-caption {
    font-size: 17px;
  }
  .section-narrative,
  .license-narrative {
    font-size: 14px;
  }
  .license-document {
    padding: 10px 20px;
    font-size: 15px;
  }
  .closure-base {
    gap: 20px;
  }
  .base-rights {
    font-size: 15px;
  }
  .nav-option {
    font-size: 15px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .prestige-closure {
    padding: 20px 0;
  }
  .closure-overview {
    gap: 15px;
  }
  .overview-contacts {
    gap: 15px;
  }
  .contact-phone,
  .contact-email {
    font-size: 14px;
  }
  .closure-advisory {
    gap: 15px;
  }
  .advisory-section,
  .advisory-license {
    padding: 12px;
  }
  .section-caption,
  .license-caption {
    font-size: 16px;
  }
  .section-narrative,
  .license-narrative {
    font-size: 13px;
  }
  .license-document {
    padding: 8px 16px;
    font-size: 14px;
  }
  .closure-base {
    gap: 15px;
  }
  .base-rights {
    font-size: 14px;
  }
  .base-navigation {
    gap: 15px;
  }
  .nav-option {
    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;
    }
}

.closure-base p {
  color: #fff;
}