@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://elvaronuthiq.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://elvaronuthiq.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 */
.disclosure-panel {
  background: linear-gradient(to bottom, #ffffff 0%, #f9fbfc 100%);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  margin: 10px 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.disclosure-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #007bff 0%, #00c6ff 100%);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

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

.disclosure-wrapper {
  position: relative;
  z-index: 1;
}

.disclosure-text {
  color: #333333;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  max-width: 90%;
  margin: 0 auto;
}

.disclosure-text p {
  margin-bottom: 12px;
  opacity: 0;
  transform: scale(0.98) translateY(15px);
  animation: elegantFadeIn 0.7s ease-out forwards;
}

.disclosure-text p:nth-child(1) {
  animation-delay: 0.3s;
}

.disclosure-text p:nth-child(2) {
  animation-delay: 0.6s;
}

.disclosure-text p:nth-child(3) {
  animation-delay: 0.9s;
}

.disclosure-text strong {
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.disclosure-text strong:hover {
  color: #007bff;
}

.disclosure-text a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.disclosure-text a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 50%;
  background-color: #007bff;
  transition: width 0.4s ease, left 0.4s ease;
}

.disclosure-text a:hover::before {
  width: 100%;
  left: 0;
}

.disclosure-text a:hover {
  color: #0056b3;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .disclosure-panel {
    padding: 20px 0;
    border-radius: 8px;
  }

  .disclosure-text {
    font-size: clamp(12px, 1.4vw, 14px);
    max-width: 95%;
  }

  .disclosure-text p {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .disclosure-panel {
    margin: 10px 0;
  }
}

/* header */

.executive-navbar {
  background: linear-gradient(to bottom, #1e1e2f 0%, #2c2c4a 100%);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.executive-navbar:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 30px);
  opacity: 0;
  transform: translateY(-15px);
  animation: elegantSlideIn 1s ease-out forwards;
}

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

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

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

.navbar-actions {
  display: flex;
  align-items: center;
  gap: clamp(25px, 5vw, 35px);
}

.primary-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(45deg, #4da8ff 0%, #80c0ff 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 3px 12px rgba(77, 168, 255, 0.3);
}

.primary-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(77, 168, 255, 0.5);
}

.primary-button:hover::after {
  opacity: 1;
}

.desktop-navigation {
  display: none;
}

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

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

.navigation-item {
  position: relative;
}

.navigation-link {
  color: #e0e0e0;
  text-decoration: none;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 500;
  position: relative;
  transition: color 0.4s ease;
  padding-bottom: 5px;
}

.navigation-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #4da8ff, #80c0ff);
  transition: width 0.4s ease;
}

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

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

.burger {
  flex-shrink: 0;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.burger::before,
.burger::after,
.burger span {
  width: 100%;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  transition: all 0.4s ease;
}

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

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

.burger.is-open::before {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger.is-open::after {
  transform: rotate(-45deg) translate(10px, -10px);
}

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

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

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

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.mobile-menu-overlay.is-open .mobile-menu-content {
  transform: scale(1);
  opacity: 1;
}

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

.mobile-navigation-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mobile-menu-overlay.is-open .mobile-navigation-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay.is-open .mobile-navigation-item:nth-child(1) {
  transition-delay: 0.2s;
}

.mobile-menu-overlay.is-open .mobile-navigation-item:nth-child(2) {
  transition-delay: 0.3s;
}

.mobile-menu-overlay.is-open .mobile-navigation-item:nth-child(3) {
  transition-delay: 0.4s;
}

.mobile-menu-overlay.is-open .mobile-navigation-item:nth-child(4) {
  transition-delay: 0.5s;
}

.mobile-navigation-link {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 600;
  transition: color 0.4s ease, transform 0.4s ease;
}

.mobile-navigation-link:hover {
  color: #4da8ff;
  transform: scale(1.05);
}

.mobile-primary-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(45deg, #4da8ff 0%, #80c0ff 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 18px);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(77, 168, 255, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}

.mobile-menu-overlay.is-open .mobile-primary-button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.mobile-primary-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(77, 168, 255, 0.6);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar-wrapper {
    gap: 15px;
  }

  .primary-button {
    padding: 10px 20px;
    font-size: clamp(13px, 1.8vw, 15px);
  }

  .corporate-logo {
    max-width: 50px;
  }

  .burger {
    width: 28px;
    height: 22px;
  }

  .burger::before,
  .burger::after,
  .burger span {
    height: 3px;
  }
}

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

.prestige-banner {
  padding: clamp(100px, 18vh, 180px) 0;
  background: url(../img/hero.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: #f0f0f5;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.6s ease;
}

.prestige-banner:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.prestige-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(77, 168, 255, 0.1) 0%, transparent 50%);
  opacity: 0.3;
  animation: subtleGlow 10s ease-in-out infinite;
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: scale(0.95);
  animation: elegantZoomIn 1.2s ease-out forwards;
}

.banner-headline {
  font-size: clamp(40px, 7vw, 60px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(30px);
  animation: riseUp 0.8s ease-out 0.3s forwards;
}

.banner-overview {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: riseUp 0.8s ease-out 0.6s forwards;
}

.banner-call-to-action {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #1a1a3a 0%, #2d55ff 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(15px, 2vw, 17px);
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 13, 255, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: riseUp 0.8s ease-out 0.9s forwards;
}

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

.banner-call-to-action:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}

.banner-call-to-action:hover::after {
  width: 300px;
  height: 300px;
}

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

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

@keyframes subtleGlow {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .prestige-banner {
    padding: clamp(60px, 12vh, 120px) 0;
  }

  .banner-headline {
    font-size: clamp(32px, 9vw, 48px);
  }

  .banner-overview {
    font-size: clamp(16px, 3.5vw, 20px);
    max-width: 95%;
  }

  .banner-call-to-action {
    padding: 12px 28px;
    font-size: clamp(14px, 2.2vw, 16px);
  }
}

@media (max-width: 480px) {
  .banner-content {
    padding: 0 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------------------------------ */

.features-section {
    padding: clamp(60px, 12vh, 100px) 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 85, 255, 0.05) 0%, transparent 70%);
    transform: translateX(-50%);
    z-index: 0;
}

.features-title {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    color: #1a1a3a;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: scale(0.95);
    animation: scaleIn 1s ease-out forwards;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 60px);
    position: relative;
    z-index: 1;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    background: #ffffff;
    border-radius: 24px;
    padding: clamp(20px, 3vw, 30px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.feature-card:nth-child(even) {
    animation: slideInRight 0.8s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }
.feature-card:nth-child(4) { animation-delay: 0.8s; }
.feature-card:nth-child(5) { animation-delay: 1.0s; }
.feature-card:nth-child(6) { animation-delay: 1.2s; }

.feature-card:hover {
    box-shadow: 0 15px 40px rgba(45, 85, 255, 0.15);
    transform: translateY(-10px);
}

.feature-card--reverse {
    flex-direction: row-reverse;
}

.feature-media {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
}

.feature-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.95);
}

.feature-card:hover .feature-media img {
    transform: scale(1.08);
    filter: brightness(1);
}

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-heading {
    margin-bottom: 16px;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #1a1a3a;
    line-height: 1.2;
}

.feature-description {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(15px, 2vw, 17px);
    color: #333333;
    line-height: 1.7;
}

.features-cta {
    display: block;
    max-width: 200px;
    margin: clamp(40px, 5vw, 60px) auto 0;
    padding: 14px 28px;
    background: linear-gradient(90deg, #1a1a3a 0%, #2d55ff 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(15px, 2vw, 17px);
    border-radius: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease-out 1.4s forwards;
    z-index: 100;
}

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

.features-cta:hover {
    background: linear-gradient(90deg, #2d55ff 0%, #1a1a3a 100%);
    transform: translateY(-5px);
}

.features-cta:hover::after {
    width: 300px;
    height: 300px;
}

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

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

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .feature-card,
    .feature-card--reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-media {
        margin-bottom: 20px;
    }
    
    .feature-card {
        animation: slideInLeft 0.8s ease-out forwards !important;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 50px 0;
    }
    
    .features-title {
        font-size: clamp(28px, 7vw, 36px);
        margin-bottom: 30px;
    }
    
    .features-list {
        gap: 30px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .features-cta {
        max-width: 180px;
        padding: 12px 24px;
        font-size: 15px;
        margin-top: 40px;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .features-section {
        padding: 40px 0;
    }
    
    .features-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .features-list {
        gap: 20px;
    }
    
    .feature-heading {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .features-cta {
        max-width: 160px;
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 30px;
    }
}


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

.pro-trading-section {
    padding: clamp(70px, 12vh, 100px) 0;
    background: linear-gradient(180deg, #f9fbff 0%, #e8effa 100%);
    color: #1e1e3a;
    position: relative;
    overflow: hidden;
}

.pro-trading-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(45, 85, 255, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.pro-trading-title {
    text-align: center;
    margin-bottom: 16px;
    font-size: clamp(32px, 5.5vw, 44px);
    font-weight: 800;
    color: #1e1e3a;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.pro-trading-intro {
    text-align: center;
    margin-bottom: clamp(50px, 7vw, 70px);
    font-size: clamp(17px, 2.2vw, 19px);
    font-weight: 400;
    line-height: 1.7;
    color: #4a4a6a;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.pro-trading-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(25px, 4vw, 40px);
    margin-bottom: clamp(50px, 7vw, 70px);
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
    .pro-trading-features {
        grid-template-columns: 1fr;
    }
}

.pro-feature {
    background: #ffffff;
    border-radius: 16px;
    padding: clamp(25px, 3.5vw, 35px);
    box-shadow: 0 8px 24px rgba(30, 30, 58, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpFade 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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

.pro-feature:hover {
    box-shadow: 0 12px 32px rgba(45, 85, 255, 0.15);
    transform: translateY(-6px);
}

.pro-feature-icon {
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d55ff 0%, #1e1e3a 100%);
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.pro-feature:hover .pro-feature-icon {
    transform: rotate(5deg) scale(1.05);
}

.pro-feature-icon svg {
    color: #ffffff;
    width: 28px;
    height: 28px;
}

.pro-feature-title {
    margin-bottom: 12px;
    font-size: clamp(21px, 2.8vw, 25px);
    font-weight: 700;
    color: #1e1e3a;
    line-height: 1.3;
}

.pro-feature-desc {
    font-size: clamp(15px, 1.9vw, 16px);
    line-height: 1.65;
    color: #4a4a6a;
}

.pro-trading-highlight {
    display: flex;
    align-items: center;
    gap: clamp(30px, 4vw, 50px);
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.8s forwards;
}

@media screen and (max-width: 1024px) {
    .pro-trading-highlight {
        flex-direction: column-reverse;
    }
}

.pro-highlight-text {
    flex: 1;
}

.pro-highlight-title {
    margin-bottom: 18px;
    font-size: clamp(30px, 4.5vw, 38px);
    font-weight: 800;
    color: #1e1e3a;
    line-height: 1.2;
}

.pro-highlight-title em {
    display: block;
    color: #2d55ff;
    font-style: normal;
}

.pro-highlight-desc {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: #4a4a6a;
    max-width: 480px;
}

.pro-highlight-image {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 30, 58, 0.1);
    transition: box-shadow 0.4s ease;
}

.pro-trading-highlight:hover .pro-highlight-image {
    box-shadow: 0 15px 40px rgba(45, 85, 255, 0.2);
}

.pro-highlight-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pro-trading-highlight:hover .pro-highlight-image img {
    transform: scale(1.06);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .pro-trading-section {
        padding: 50px 0;
    }
    
    .pro-trading-title {
        font-size: clamp(28px, 7vw, 36px);
        margin-bottom: 12px;
    }
    
    .pro-trading-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .pro-trading-features {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .pro-feature {
        padding: 20px;
    }
    
    .pro-highlight-title {
        font-size: 28px;
    }
    
    .pro-highlight-desc {
        font-size: 15px;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .pro-trading-section {
        padding: 40px 0;
    }
    
    .pro-trading-title {
        font-size: 26px;
    }
    
    .pro-trading-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .pro-trading-features {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .pro-feature-title {
        font-size: 20px;
    }
    
    .pro-feature-desc {
        font-size: 14px;
    }
    
    .pro-highlight-title {
        font-size: 24px;
    }
    
    .pro-highlight-desc {
        font-size: 14px;
    }
}

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

.beginner-resources-section {
    padding: clamp(60px, 11vh, 90px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    position: relative;
    overflow: hidden;
}

/* .beginner-resources-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(31, 58, 138, 0.05) 0%, transparent 70%);
    z-index: 0 !important;
} */

.resources-main-title {
    text-align: center;
    margin-bottom: 18px;
    font-size: clamp(30px, 5.5vw, 42px);
    font-weight: 800;
    color: #1f3a8a;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInScale 1.2s ease forwards;
}

.resources-overview {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 400;
    line-height: 1.65;
    color: #4d4d6a;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInScale 1.2s ease 0.2s forwards;
}

.resources-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(25px, 3.5vw, 35px);
    position: relative;
    z-index: 1;
}

.resource-entry {
    background: #ffffff;
    border-radius: 18px;
    padding: clamp(25px, 3vw, 30px);
    box-shadow: 0 6px 20px rgba(31, 58, 138, 0.08);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    opacity: 0;
    transform: translateY(25px);
    animation: riseUp 0.9s ease-out forwards;
}

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

.resource-entry:hover {
    box-shadow: 0 10px 28px rgba(31, 58, 138, 0.15);
    transform: translateY(-8px);
}

.resource-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 58, 138, 0.05);
    border-radius: 12px;
    transition: background 0.35s ease;
}

.resource-entry:hover .resource-icon-wrapper {
    background: rgba(31, 58, 138, 0.1);
}

.resource-title {
    margin-bottom: 14px;
    font-size: clamp(20px, 2.6vw, 24px);
    font-weight: 700;
    color: #1f3a8a;
    line-height: 1.25;
}

.resource-summary {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.6;
    color: #4d4d6a;
    flex-grow: 1;
}

.resource-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1f3a8a 0%, #3b6cd4 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 1.8vw, 15px);
    border-radius: 30px;
    transition: background 0.35s ease, transform 0.35s ease;
}

.resource-cta:hover {
    background: linear-gradient(135deg, #3b6cd4 0%, #1f3a8a 100%);
    transform: translateY(-3px);
}

.cta-arrow {
    font-size: 18px;
    transition: transform 0.35s ease;
}

.resource-cta:hover .cta-arrow {
    transform: translateX(4px);
}

.resources-primary-cta {
    display: block;
    max-width: 220px;
    margin: clamp(40px, 5vw, 60px) auto 0;
    padding: 14px 28px;
    background: linear-gradient(135deg, #1f3a8a 0%, #3b6cd4 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(15px, 2vw, 17px);
    border-radius: 30px;
    text-align: center;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    opacity: 0;
    z-index: 100;
    animation: fadeInScale 1.2s ease 0.8s forwards;
}

.resources-primary-cta:hover {
    background: linear-gradient(135deg, #3b6cd4 0%, #1f3a8a 100%);
    box-shadow: 0 8px 24px rgba(31, 58, 138, 0.2);
    transform: translateY(-4px);
}

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .resources-collection {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .beginner-resources-section {
        padding: 50px 0;
    }
    
    .resources-main-title {
        font-size: clamp(26px, 6vw, 34px);
        margin-bottom: 14px;
    }
    
    .resources-overview {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .resource-entry {
        padding: 20px;
    }
    
    .resources-primary-cta {
        max-width: 200px;
        padding: 12px 24px;
        font-size: 15px;
        margin-top: 40px;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .beginner-resources-section {
        padding: 40px 0;
    }
    
    .resources-main-title {
        font-size: 24px;
    }
    
    .resources-overview {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .resources-collection {
        gap: 20px;
    }
    
    .resource-title {
        font-size: 19px;
    }
    
    .resource-summary {
        font-size: 13px;
    }
    
    .resource-cta {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .resources-primary-cta {
        max-width: 180px;
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 30px;
    }
}


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

.signup-area {
    padding: clamp(70px, 13vh, 110px) 0;
    background: linear-gradient(145deg, #e9effa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(30, 60, 140, 0.1);
    border-bottom: 1px solid rgba(30, 60, 140, 0.1);
}

.signup-area::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -20%;
    width: 140%;
    height: 50%;
    background: radial-gradient(ellipse at bottom left, rgba(31, 58, 138, 0.06) 0%, transparent 70%);
    z-index: 0;
}

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

.signup-title {
    font-size: clamp(32px, 5.5vw, 44px);
    font-weight: 800;
    color: #1e3c8c;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpReveal 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.signup-description {
    font-size: clamp(17px, 2.2vw, 19px);
    font-weight: 400;
    color: #4a5a7a;
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpReveal 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards;
}

.signup-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 3vw, 30px);
    position: relative;
    z-index: 1;
}

.signup-field {
    display: flex;
    flex-direction: column;
    border: none;
    gap: 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpReveal 0.8s ease forwards;
}

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

.signup-label {
    font-size: clamp(15px, 1.9vw, 16px);
    font-weight: 600;
    color: #1e3c8c;
    transition: color 0.3s ease;
}

.signup-input,
.signup-textarea {
    padding: 14px 20px;
    border: 1px solid rgba(30, 60, 140, 0.2);
    border-radius: 12px;
    font-size: clamp(15px, 1.9vw, 16px);
    color: #333;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.signup-input:focus,
.signup-textarea:focus {
    border-color: #1e3c8c;
    box-shadow: 0 0 0 4px rgba(30, 60, 140, 0.1);
    outline: none;
}

.signup-textarea {
    resize: vertical;
    min-height: 140px;
}

.signup-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpReveal 0.8s ease 0.8s forwards;
}

.signup-notice {
    font-size: clamp(13px, 1.7vw, 14px);
    color: #5a6a8a;
    text-align: center;
    max-width: 80%;
}

.signup-notice a {
    color: #1e3c8c;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.signup-notice a:hover {
    color: #3a5cb4;
}

.signup-submit {
    padding: 14px 32px;
    background: linear-gradient(135deg, #1e3c8c 0%, #3a5cb4 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: clamp(15px, 1.9vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.signup-submit:hover {
    background: linear-gradient(135deg, #3a5cb4 0%, #1e3c8c 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(30, 60, 140, 0.15);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .signup-area {
        padding: 50px 0;
    }
    
    .signup-title {
        font-size: clamp(28px, 7vw, 36px);
    }
    
    .signup-description {
        font-size: 16px;
    }
    
    .signup-form {
        gap: 20px;
    }
    
    .signup-input,
    .signup-textarea {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .signup-label {
        font-size: 15px;
    }
    
    .signup-notice {
        font-size: 13px;
    }
    
    .signup-submit {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .signup-area {
        padding: 40px 0;
    }
    
    .signup-title {
        font-size: 26px;
    }
    
    .signup-description {
        font-size: 15px;
    }
    
    .signup-form {
        gap: 15px;
    }
    
    .signup-input,
    .signup-textarea {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .signup-label {
        font-size: 14px;
    }
    
    .signup-notice {
        font-size: 12px;
    }
    
    .signup-submit {
        padding: 10px 24px;
        font-size: 14px;
    }
}


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

.corporate-footer {
    padding: clamp(50px, 8vh, 80px) 0 clamp(30px, 5vh, 50px);
    background: linear-gradient(180deg, #f9fbff 0%, #e8effa 100%);
    color: #1e3c8c;
    position: relative;
    overflow: hidden;
}

.corporate-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(30, 60, 140, 0.04) 0%, transparent 70%);
    transform: translateX(-50%);
    z-index: 0;
}

.footer-overview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(40px, 6vw, 60px);
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

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

.footer-brand {
    display: block;
    width: 80px;
    transition: transform 0.4s ease;
}

.footer-brand:hover {
    transform: scale(1.08);
}

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

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

@media (max-width: 768px) {
    .footer-contacts {
        flex-direction: column;
        text-align: center;
    }
}

.footer-contact-link {
    color: #1e3c8c;
    text-decoration: none;
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #3a5cb4;
}

.footer-warnings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(25px, 4vw, 40px);
    margin-bottom: clamp(40px, 6vw, 60px);
    position: relative;
    z-index: 1;
}

.warning-block {
    background: #ffffff;
    padding: clamp(20px, 3vw, 25px);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(30, 60, 140, 0.08);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
}

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

.warning-block:hover {
    box-shadow: 0 10px 28px rgba(30, 60, 140, 0.15);
    transform: translateY(-6px);
}

.warning-title {
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 700;
    color: #1e3c8c;
    margin-bottom: 12px;
}

.warning-text {
    font-size: clamp(14px, 1.8vw, 15px);
    line-height: 1.7;
    color: #4a5a7a;
}

.warning-text strong {
    font-weight: 700;
    color: #1e3c8c;
}

.warning-text a {
    color: #1e3c8c;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.warning-text a:hover {
    color: #3a5cb4;
}

.license-info {
    grid-column: 1 / -1;
    background: #ffffff;
    padding: clamp(25px, 3.5vw, 30px);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(30, 60, 140, 0.08);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease 0.6s forwards;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.license-info:hover {
    box-shadow: 0 10px 28px rgba(30, 60, 140, 0.15);
    transform: translateY(-6px);
}

.license-description {
    font-size: clamp(14px, 1.8vw, 15px);
    line-height: 1.7;
    color: #4a5a7a;
    margin-bottom: 20px;
}

.license-link {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1e3c8c 0%, #3a5cb4 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 1.8vw, 15px);
    border-radius: 30px;
    transition: background 0.4s ease, transform 0.4s ease;
}

.license-link:hover {
    background: linear-gradient(135deg, #3a5cb4 0%, #1e3c8c 100%);
    transform: translateY(-3px);
}

.footer-base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1.2s ease 0.7s forwards;
}

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

.footer-rights {
    font-size: clamp(13px, 1.7vw, 14px);
    color: #4a5a7a;
}

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

@media (max-width: 480px) {
    .footer-navigation {
        flex-direction: column;
        text-align: center;
    }
}

.footer-nav-item {
    color: #1e3c8c;
    text-decoration: none;
    font-size: clamp(13px, 1.7vw, 14px);
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.footer-nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #1e3c8c;
    transition: width 0.3s ease;
}

.footer-nav-item:hover {
    color: #3a5cb4;
}

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .corporate-footer {
        padding: 40px 0 30px;
    }
    
    .footer-overview {
        margin-bottom: 30px;
    }
    
    .footer-warnings {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .warning-block {
        padding: 15px;
    }
    
    .license-info {
        padding: 20px;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .corporate-footer {
        padding: 30px 0 20px;
    }
    
    .footer-overview {
        margin-bottom: 20px;
    }
    
    .footer-warnings {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .warning-title {
        font-size: 18px;
    }
    
    .warning-text {
        font-size: 13px;
    }
    
    .license-description {
        font-size: 13px;
    }
    
    .license-link {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .footer-rights {
        font-size: 12px;
    }
    
    .footer-nav-item {
        font-size: 12px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------pages--------------------------- */

.main-content {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: clamp(50px, 10vh, 80px) 0;
}

.policy-section {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 8vh, 60px) 0;
}

.policy-heading {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 32px;
    text-align: center;
    color: #2a2a4e;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease-out forwards;
}

.policy-content {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.policy-content p {
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.policy-content p:hover {
    color: #2a2a4e;
}

.policy-content h2 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 16px;
    color: #2a2a4e;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.policy-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4da8ff;
    transition: width 0.3s ease;
}

.policy-content h2:hover::after {
    width: 100px;
}

.policy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.policy-content li:hover {
    transform: translateX(5px);
}

.policy-content a {
    color: #4da8ff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.policy-content a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #4da8ff;
    transition: width 0.3s ease;
}

.policy-content a:hover {
    color: #2a2a4e;
}

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

.policy-action-btn {
    max-width: 180px;
    width: 100%;
    margin: 32px auto 0;
    padding: 12px 0;
    background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
    color: #ffffff;
    text-align: center;
    display: block;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.policy-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(77, 168, 255, 0.4);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-heading {
        font-size: clamp(24px, 6vw, 32px);
    }
    .policy-content {
        font-size: 14px;
    }
    .policy-content h2 {
        font-size: 20px;
    }
    .policy-action-btn {
        padding: 10px 0;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .policy-section {
        padding: 30px 0;
    }
    .policy-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .policy-content {
        font-size: 13px;
    }
    .policy-content h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .policy-content ul {
        margin-left: 15px;
    }
    .policy-content li {
        margin-bottom: 8px;
    }
    .policy-action-btn {
        max-width: 160px;
        margin-top: 20px;
        padding: 8px 0;
    }
}