
* {
   box-sizing: border-box
}

html,
    body {
      height: 100%
    }

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #010101;
  color: white;
  font-family: "Inter", sans-serif;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation: bgFade 25s infinite ease-in-out;
}

/* Анимация плавной смены изображений */
@keyframes bgFade {
  0% {
    background-image: url("../assets/img/bg-01.png");
  }
  33% {
    background-image: url("../assets/img/bg-004.png");
  }
  67% {
    background-image: url("../assets/img/bg-main-03.png");
  }
  100% {
    background-image: url("../assets/img/bg-01.png");
  }
}

:root {
  --bg-anim-duration: 14s;
  --bg-anim-ease: ease-in-out;
  --bg-anim-opacity: 0.28;
  --bg-anim-scale: 2.1;
  --bg-anim-color: 220, 230, 255;
  --white-clr: #ffffff;
  --grey-clr: #888888;
  --clr-up-ul: #f0f0f0;
  --black-for-txt: #000000;
  --glass: #ffffff22;
  --muted: #9aa0a6;
  --container: 1200px;
  --text: #f2f2f2;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 100px;
}

header nav a {
    font-family: var(--font-inter);
    font-style: Medium;
    font-size: 16.29px;
    line-height: 100%;
    letter-spacing: 1%;
    text-align: center;
    vertical-align: middle;
    margin: 0 25px;
    text-decoration: none;
    font-weight: bold;
    color: var(--white-clr);
    
}

header nav a.active {
    text-shadow: 0 0 14px #fff,
                 0 0 30px #fff,
                 0 0 10px #999;
}

header nav a:hover {
    cursor: pointer;
    text-shadow: 0 0 20px #9999998f,
                 0 0 20px #9999998f,
                 0 0 20px #9999998f;
}

header button {
    background-color: var(--white-clr);
    font-family: var(--font-inter);
    font-weight: 500;
    font-style: Medium;
    font-size: 13.68px;
    line-height: 100%;
    letter-spacing: 1%;
    text-align: center;
    vertical-align: middle;
    color: var(--black-for-txt);
    padding: 5px 20px;
    border: 2px solid var(--white-clr);
    border-radius: 8px;
}

header button:hover {
    background-color: #dddddd;
    border: 2px solid #dddddd;
    cursor: pointer;
}

.fast-secure {
    justify-content: center;
    align-items: center;
}

.fast-secure h1 {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 60px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(194, 194, 194, 0.9);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 
      0 0 20px rgba(255, 255, 255, 0.8),
      0 0 40px rgba(219, 255, 255, 0.7);
  }
  50% {
    text-shadow: 
      0 0 15px rgba(216, 216, 216, 0.9),
      0 0 40px rgba(255, 255, 255, 0.6);
  }
}

.fast-secure p {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 10px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: var(--grey-clr);
    margin-top: -40px;
}



.pricing-plans {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.pricing-plans h1 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 60px;
  z-index: 0;
  margin-top: 170px;
  font-family: Nunito Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 93.15px;
  leading-trim: NONE;
  line-height: 110.00000000000001%;
  letter-spacing: 1%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--clr-up-ul);
}

/* Контейнер с карточками */
.prpl01 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 200px;
}

/* Карточка тарифа */
.plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* распределяем контент и кнопку */
  align-items: center;
  width: 300px;
  padding: 40px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  align-items: stretch;
}

.plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.15);
  animation: animBlocks 4s ease-in infinite;
}

@keyframes animBlocks {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.25);
  } 50% {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.34);
  }
}

/* Название тарифа */
.plan-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #fff;
  font-family: Nunito Sans;
  font-style: Bold;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;

}

/* Список преимуществ */
.features {
  flex-grow: 1; /* список занимает всё свободное место */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
  text-align: left;
  margin-left: -25px;
}


.features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

/* buttons */
.btn.get-started {
  margin-top: 30px;
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.classic .btn.get-started,
.comfort .btn.get-started,
.vip .btn.get-started {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 10px;
}

.btn.get-started:hover {
  transform: scale(1.05);
  opacity: 0.9;
  background-color: #fff;
  color: #000000;
  animation: shadowsAnim 4s ease-in infinite;
}

@keyframes shadowsAnim {
  0%, 100% {
    box-shadow: 0 0 17px rgba(220, 220, 220, 0.1);
  } 50% {
    box-shadow: 0 0 30px rgba(194, 194, 194, 0.9);
  }
}


/* ringns >>> */
.proc-rings {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 300px;
    z-index: 1;
    pointer-events: none;
    display: grid;
    place-items: center
  }
  .proc-rings::before,
  .proc-rings::after {
    content: "";
    position: absolute;
    width: min(1000px, 94vw);
    aspect-ratio: 1/1;
    border-radius: 50%;
    background:
      radial-gradient(circle at center, transparent 0 36%, rgba(255, 255, 255, .03) 37% 38%, transparent 39%),
      radial-gradient(circle at center, transparent 0 51%, rgba(255, 255, 255, .03) 52% 53%, transparent 54%),
      radial-gradient(circle at center, transparent 0 66%, rgba(255, 255, 255, .03) 67% 68%, transparent 69%);
    filter: blur(.3px)
  }
  .proc-rings::after {
    transform: scale(1.12);
    opacity: .7;
    filter: blur(.5px)
  }


#main-el-money {
  display: flex;
  flex-direction: column;
  align-items: center;   /* центрирует по горизонтали */
  justify-content: center; /* центрирует по вертикали */
  text-align: center;
  gap: 20px; /* расстояние между блоком и кнопкой */
  height: 100vh; /* секция на всю высоту экрана */
  color: #fff;
  margin-top: -20vh;
}

/* карточка с заголовками */
#main-el-money .h2 {
  background: linear-gradient(180deg, rgba(8,8,8,0.55), rgba(12,12,12,0.5));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  width: 600px;
  padding: 20px 0;
  display: flex; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Nunito Sans;

}

#main-el-money .h2 h2 {
  margin: 4px 0; /* 👈 уменьшили расстояние между заголовками */
  line-height: 1.1; /* делает текст плотнее */
}

/* кнопка */
#main-el-money button {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 21px;
  line-height: 100%;
  text-transform: uppercase;
  border: 2px solid var(--white-clr);
  background-color: var(--white-clr);
  color: #000;
  border-radius: 33px;
  padding: 16px 40px;
  cursor: pointer;
  transition: 0.3s;
}

/* hover-эффект для кнопки */
#main-el-money button:hover {
  background-color: transparent;
  color: var(--white-clr);
}


.wchoose {
  justify-content: center;
  align-items: center;
  padding: 170px 0;
  overflow: hidden;
}

.wchoose h2 {
  font-family: Nunito Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 46.13px;
  leading-trim: NONE;
  line-height: 110.00000000000001%;
  letter-spacing: 1%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: -15px;
}

.wchoose .fg-1.second {
  margin-top: -15px;
}

.wchoose .fg-1.second div:nth-child(2) {
  margin-left: -200px;
}

.wchoose .fg-1.second div:nth-child(3) {
  margin-left: -200px;
}

.wchoose .fg-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.fg-1 div:nth-child(2) {
  margin-left: -160px;
}

.fg-1 div:nth-child(3) {
  margin-left: -160px;
}

.wchoose .fg-1 > div {
  position: relative;
  width: 420px; /* немного меньше, чтобы все влезли */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wchoose svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  pointer-events: none;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.08))
          drop-shadow(0 0 30px rgba(252, 252, 252, 0.1));
}

.wchoose span {
  position: relative;
  z-index: 2;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f5f5f5;
  font-size: 14px;
  text-align: center;
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
  animation: glow 2.4s ease-in-out infinite alternate;
}

/* Эффект мягкого свечения текста */
@keyframes glow {
  from {
    text-shadow: 0 0 6px rgba(255,255,255,0.3), 0 0 10px rgba(255,255,255,0.2);
  }
  to {
    text-shadow: 0 0 12px rgba(255,255,255,0.5), 0 0 25px rgba(255,255,255,0.4);
  }
}
