@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Montserrat+Alternates:wght@400;@500;@600;@700&display=swap');

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

body {
    background: #1b1b1b;
    color: white;
    font-family: 'Montserrat-alternates', sans-serif;
    margin: 0;
    padding: 0;
    user-select: none;
    letter-spacing: 0.5px;
}

.page-shell {
    min-height: calc(100vh - 8rem);
    padding: 7.75rem 0 3.5rem;
}

.plan-order-button,
.news-card__link,
.support-btn,
.btn-more,
.pricing-button,
.auth-button {
    text-decoration: none;
}

.plan-order-button:hover,
.news-card__link:hover,
.support-btn:hover,
.btn-more:hover,
.pricing-button:hover,
.auth-button:hover {
    text-decoration: none;
}

.section {
    width: min(100%, 80rem);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(87, 80, 218, 0.16);
    color: #d8d5ff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.9rem;
}

.section-title {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 3.6vw, 3rem);
}

.section-description {
    margin: 0;
    color: #c7cbdb;
    line-height: 1.7;
    max-width: 46rem;
}
html {
    height: 100%;
    overflow: auto;
    scrollbar-color: #5750DA #111111;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}
.container {
    width: 100%;
    max-width: 80rem; 
    display: flex;
    align-items: center;
}

.navbar {
    position: fixed;
    top: 1.1%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 80rem; 
    background: rgba(33, 33, 33, 0.97);
    padding: 1rem 2rem; 
    display: flex;
    align-items: center;
    z-index: 1000;
    border-radius: 1.25rem; 
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar.transparent:hover {
    background: rgba(33, 33, 33, 1);
    opacity: 1; 
}

.navbar.transparent:hover .menu a,
.navbar.transparent:hover .right-section img,
.navbar.transparent:hover .auth-button,
.navbar.transparent:hover .dropdown-menu a {
    opacity: 1; 
}

.navbar.transparent .menu a {
    opacity: 0.8;
    transition: color 0.3s, opacity 0.3s; 
}

.navbar.transparent .menu a:hover {
    color: #5750DA; 
    opacity: 1; 
}

.navbar.transparent .right-section img {
    opacity: 0.8;
    transition: transform 0.2s ease-in-out, opacity 0.3s; 
}

.navbar.transparent .right-section img:hover {
    transform: scale(1.05); 
    opacity: 1; 
    cursor: pointer;
}

.navbar.transparent .auth-button {
    opacity: 0.8;
    transition: background 0.3s, opacity 0.3s; 
}

.navbar.transparent .auth-button:hover {
    background: #483bd1; 
    opacity: 1; 
}

.menu {
    display: flex;
    align-items: center;
    gap: 2rem; 
    margin: 0 auto;
    white-space: nowrap;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 1.25rem; 
    transition: color 0.3s, opacity 0.3s;
}

.menu a:hover {
    color: #5750DA;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 0.8rem; 
}

.right-section img {
    height: 3rem; 
    transition: transform 0.2s ease-in-out, opacity 0.3s;
}

.right-section img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.auth-button {
    display: inline-block;
    background: #5750DA;
    color: white;
    font-size: 1.2rem; 
    text-decoration: none;
    padding: 0.75rem 1.5rem; 
    border: none;
    border-radius: 0.5rem; 
    cursor: pointer;
    transition: background 0.3s, opacity 0.3s;
}

.auth-button:hover {
    background: #483bd1;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(33, 33, 33);
    display: none;
    flex-direction: column;
    width: auto;
    padding: 0.5rem 0;
    border-radius: 0.625rem; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.dropdown-menu a {
    padding: 0.75rem 1rem; 
    color: white;
    text-decoration: none;
    display: block;
    max-width: 100%;
    white-space: nowrap;
    transition: color 0.3s, opacity 0.3s;
}

.dropdown-menu a:hover {
    color: #5750DA;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 0rem 4rem; 
    max-width: 80rem; 
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.hero-content {
    max-width: 60%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem; 
    font-weight: bold;
}

.hero-content h2 {
    font-size: 2rem; 
    color: #5750DA;
}

.hero-content p {
    font-size: 1.25rem; 
    color: #bdbdbd;
    margin: 1rem 0; 
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; 
    margin: 1.5rem 0; 
}

.features span {
    background: rgba(90, 79, 243, 0.2);
    padding: 0.75rem 1.5rem; 
    border-radius: 0.5rem; 
    font-size: 1rem; 
    border: solid 3px #5750DA;
}

.pricing-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; 
    background: #5750DA;
    color: white;
    font-size: 1.25rem; 
    padding: 0.75rem 2rem; 
    border: none;
    border-radius: 0.5rem; 
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.pricing-button:hover {
    background: #483bd1;
}

.hero-image {
    position: relative;
    width: 45%;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
}

.glow1 {
    position: absolute;
    top: 45%;
    left: 75%;
    width: 15.625rem; 
    height: 15.625rem; 
    background: rgba(142, 80, 218, 1);
    border-radius: 50%;
    filter: blur(6.25rem); 
    transform: translate(-80%, -60%);
    z-index: -1;
}

.glow2 {
    position: absolute;
    top: 75%;
    left: 20%;
    width: 15.625rem; 
    height: 15.625rem; 
    background: rgba(87, 80, 218, 1);
    border-radius: 50%;
    filter: blur(6.25rem); 
    transform: translate(-50%, -50%);
    z-index: -1;
}

.webplans {
    justify-content: center;
    gap: 1.25rem; 
    padding: 5rem 0; 
    max-width: 80rem; 
    display: flex;
    align-items: center;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}

.glow3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15.625rem; 
    height: 15.625rem; 
    background: rgba(87, 80, 218, 1);
    border-radius: 50%;
    filter: blur(6.25rem); 
    transform: translate(-50%, -50%);
    z-index: 0;
}

.plan {
    background: rgba(33, 33, 33, 0.4);
    border-radius: 1.25rem; 
    padding: 1rem; 
    min-width: 20rem; 
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.tooltip {
    visibility: hidden; 
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #21212166;
    color: #fff;
    padding: 5px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 1;
    width: 17rem;
    margin-bottom: 1rem;
    text-align: center;
    transition: 0.2s;
}

.plan:hover .tooltip {
    visibility: visible; 
}

.plan:hover {
    transform: scale(1.025);
}

.plan h2 {
    font-size: 1.5625rem; 
    margin: 0.9375rem 0; 
    background: linear-gradient(to right, #5750DA, #8E50DA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.plan.x-promo h2 {
    background: linear-gradient(to right, #8E50DA, #5750DA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price {
    font-size: 1.125rem; 
    font-weight: bold;
    margin-bottom: 1.25rem; 
    color: #ffffff;
}

.label {
    display: inline-block;
    padding: 0.25rem 0.75rem; 
    font-size: 0.75rem; 
    font-weight: 600;
    border: 2px solid #5750DA;
    border-radius: 0.625rem; 
    text-transform: uppercase;
}

.features {
    margin-top: 0.9375rem; 
}

.feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(38, 38, 38, 0.7);
    border: 0.5px solid rgba(33, 33, 33, 0.6);
    padding: 0.625rem; 
    font-size: 0.875rem; 
    border-radius: 0.5rem; 
    margin-bottom: 0.5rem; 
    font-weight: 600;
}

.feature img {
    width: 1.25rem; 
    height: 1.25rem; 
    margin-right: 0.4375rem; 
}

.burger-menu{
    display: none;
}

.x-promo .feature i,
.x-promo .feature .value {
    color: #8E50DA;
}
.plan.x-promo .feature .feature-value{
    color: #8E50DA;
}

.plan .feature .feature-value{
    color: #5750DA;
    font-weight: 700;
    margin-left: auto;
}

.plan .feature .feature-label{
    color: inherit;
    font-weight: 600;
    margin-left: 0;
}
.x-promo .label {
    border-color: #8E50DA;
    color: #8E50DA;
}
.feature2{
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 40, 40, 0.7);
    border: 0.5px solid rgba(33, 33, 33, 0.6);
    padding: 10px;
    font-size: 14px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #5750DA;
}

.plan.x-plus .discount {
    position: absolute;
    top: -15px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;

    background: linear-gradient(to right, #5750DA, #8E50DA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plan.x-pro .discount {
    position: absolute;
    top: -15px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;

    background: linear-gradient(to right, #5750DA, #8E50DA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container-features {
    justify-content: center;
    max-width: 90rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    position: relative;
    padding: 3.5rem 0;
}
.glow4 { 
    position: absolute;
    top: 30%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(87, 80, 218, 0.4);
    border-radius: 50%;
    filter: blur(100px);
    transform: translate(-50%, -50%);
    z-index: 0; 
}
.glow5 { 
    position: absolute;
    top: 70%;
    left: 60%;
    width: 250px;
    height: 250px;
    background: rgba(142, 80, 218, 0.4);
    border-radius: 50%;
    filter: blur(80px);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.container-features h1 {
    font-size: 32px;
    margin-bottom: 30px;
}

.features-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    min-width: 20rem;
}
.features-wrapper p{
    font-size: 1rem;
}

.blue-box, .gray-box {
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(2.5px);
    z-index: 1;
    position: relative;
    width: 25rem;
    height: 12rem;
    transition: 0.2s ease;
}
.gray-box:hover {
    transform: scale(1.025);
    transition: 0.2s ease;
}
.blue-box:hover {
    transform: scale(1.025);
    transition: 0.2s ease;
}

.gray-box {
    border: 1px solid rgba(33, 33, 33, 0.62);
    background: rgba(33, 33, 33, 0.2);
}

.box-title {
    color: #5750DA;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blue-box {
    position: relative; 
    border: 1px solid rgba(87, 80, 218, 0.62);
    background: linear-gradient(to bottom, rgba(87, 80, 218, 0.2), rgba(46, 43, 116, 0.2));
}

.blue-box-1::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -90px;
    width: 350px;
    height: 350px;
    background: url('../assets/img/cash.svg') no-repeat center center;
    z-index: 0;
    background-size: cover;
    opacity: 0.8;
}

.blue-box-2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 200px;
    height: 200px;
    background: url('../assets/img/clock.svg') no-repeat center center;
    z-index: 0;
    background-size: cover;
    opacity: 0.8;
}

.blue-box-3::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 0px;
    width: 200px;
    height: 200px;
    background: url('../assets/img/panel.svg') no-repeat center center;
    z-index: 0;
    background-size: cover;
    opacity: 0.8;
}

.blue-box * {
    position: relative; 
    z-index: 1;
}
.help-section {
    position: relative;
    background: rgba(33, 33, 33, 0.8);
    border-radius: 1.25rem;
    overflow: visible;
    justify-content: center;
    max-width: 80rem;
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 2rem 2rem;
    max-height: 20rem;
    top: 5rem;
}
.free-hosting-block {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 2rem 2rem;
  border-radius: 2rem;
  background: rgba(33, 33, 33, 0.8);
  box-sizing: border-box;
  overflow: hidden;
}

.glow-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  background: rgba(87, 80, 218, 0.4);
  filter: blur(130px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.free-hosting-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.left-info {
  color: #fff;
  max-width: 30rem;
  flex: 1 1 300px;
}

.left-info h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: #5750DA;
}

.btn-more {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #574FDA, #3F38C7);
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 0px 10px rgba(87, 79, 218, 0.4);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.btn-more:hover {
  background: linear-gradient(135deg, #6a5df1, #4b42d3);
  box-shadow: 0 0px 20px rgba(87, 79, 218, 0.5);
}

@media (max-width: 768px) {
  .free-hosting-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .left-info h1 {
    font-size: 2rem;
  }

  .btn-more {
    width: 80%;
    padding: 1rem;
  }
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1C1C1C;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #e0e0e0;
}

.features-list li img {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  filter: brightness(1.5) saturate(1.2);
}

.features-list li span {
  color: #574FDA;
  margin-left: auto;
  font-weight: 600;
}

.right-img img {
  max-width: 300px;
  height: auto;
}

.support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.text-content {
    max-width: 50%;
    color: #fff;
    position: relative;
    bottom: 2rem;
    left: -1rem;
    letter-spacing: 0.0625rem;
}

.text-content h2 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.9375rem;
}

.text-content p {
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 1.25rem;
}

.support-btn {
    display: inline-block;
    background: #6C63FF;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
}

.support-btn:hover {
    background: #5a52e0;
}

.image-content {
    position: relative;
    max-width: 50%;
}

.image-content img {
    position: relative;
    bottom: 5rem;
    right: 0.0625rem;
    max-width: 28.125rem;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.glow-purple {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: rgba(142, 80, 218, 1); 
    transform: translate(-50%, -50%);
    z-index: -1;
}

.glow-blue {
    top: 60%;
    left: 65%;
    width: 150px;
    height: 150px;
    background: rgba(142, 80, 218, 1); 
    transform: translate(-50%, -50%);
    z-index: 1;
}
.glow-purple2 {
    top: 50%;
    left: 85%;
    width: 150px;
    height: 150px;
    background: rgba(87, 80, 218, 1);
    transform: translate(-50%, -50%);
    z-index: 1;
}

footer {
    background-color: #1b1b1b;
    color: #fff;
    padding: 2rem 0;
    border-top: 1px solid #fff;
    margin-top: 10rem;
  }
  
  
  .container-footer {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 80rem;
    margin: 0 auto;
    text-align: left;
    gap: 1rem;
  }
  
  
  .footer-logo {
    flex: 1 1 15rem; 
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
  }
  
  .footer-logo img {
    height: 2.5rem; 
  }
  
  
  footer h1, footer h2 {
    margin: 0 0 1rem 0;
    padding: 0;
    font-size: 1.2rem; 
  }
  
  
  footer p {
    font-size: 1rem;
    margin: 0.5rem 0;
    line-height: 1.4;
  }
  
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-icons a {
    display: inline-block;
    width: 2.5rem; 
    height: 2.5rem;
    background: none;
    border-radius: 50%;
  }
  
  .social-icons a img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
  }
  
  .social-icons a:hover img {
    transform: scale(1.1); 
  }
  
  
  .payment-methods,
  .services,
  .supportf,
  .about {
    flex: 1 1 10rem;
    padding: 1rem;
  }
  
  .icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  
  .icon img {
    width: 2.5rem; 
    height: 2.5rem;
  }
  
  
  footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  footer ul li {
    margin-bottom: 0.5rem;
  }
  
  footer ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.2s;
  }
  
  footer ul li a:hover {
    color: #5750DA;
  }
  
  
  .footer-bottom {
    max-width: 80rem;
    margin: 0.5rem auto 0;
    text-align: center;
  }
  
  .footer-bottom p {
    font-size: 0.9rem;
    color: #fff;
    margin: 0.5rem 0;
  }
  .footer-bottom a {
    font-size: 0.9rem;
    color: #fff;
    margin: 0.5rem 0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-bottom a:hover {
    color: #5750DA;
  }
  

@media (max-width: 767px) {
footer {
    padding: 1.5rem 0; 
    margin-top: 10rem; 
}

.container-footer {
    flex-direction: column; 
    align-items: center; 
    gap: 2rem; 
}

.footer-logo {
    flex: 1 1 auto;
    padding: 1rem; 
    align-items: center; 
}

.footer-logo img {
    height: 3rem; 
}

footer h1, footer h2 {
    font-size: 1.4rem; 
}

footer p {
    font-size: 1.2rem; 
    text-align: center;
}

.social-icons {
    gap: 1.5rem; 
}

.social-icons a {
    width: 3rem; 
    height: 3rem;
}

.payment-methods,
.services,
.supportf,
.about {
    flex: 1 1 100%; 
    padding: 1rem;
    text-align: center; 
}

.icons {
    gap: 1.5rem; 
}

.icon img {
    width: 3rem; 
    height: 3rem;
}

footer ul li {
    margin-bottom: 1rem; 
}

footer ul li a {
    font-size: 1.2rem; 
}

.footer-bottom p {
    font-size: 1rem; 
}
}
      

  

@media (max-width: 767px) {

    
    .burger-menu {
        display: block;  
        background: transparent;
        border: none;
        cursor: pointer;
        top: 1rem;
        right: 1rem;
        z-index: 1001;
        position: fixed;
    }

    .burger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 4px 0;
    }

    
    .menu {
        display: none; 
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    
    .navbar.active .menu {
        display: flex; 
    }

    .navbar.active {
        display: flex; 
    }

    
    .right-section img {
        display: none; 
    }

    
    .logo img {
        width: 8rem; 
        height: auto;
    }

    .logo {
        margin-bottom: 1rem; 
        display: none; 
    }

    
    .navbar {
        flex-direction: column; 
        padding: 1rem; 
        top: 0.5rem; 
        display: none; 
    }

    
    .menu a {
        font-size: 1.125rem; 
    }

    .right-section {
        margin-top: 1rem; 
        margin-left: 0;
    }

    .auth-button {
        display: none; 
        padding: 0.5rem 1rem; 
        margin-top: 1rem; 
        font-size: 0.8rem;
    }
    
    
    .navbar.active .auth-button {
        display: block; 
        font-size: 0.8rem;
    }

    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(33, 33, 33, 0.9); 
        display: none;
        flex-direction: column;
        width: 100%; 
        padding: 0.5rem 0;
        border-radius: 0.625rem; 
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }

    .dropdown-menu a {
        padding: 1rem; 
        font-size: 1rem;
        text-align: left;
    }

    .dropdown:hover .dropdown-menu {
        display: block; 
        width: auto;
        text-align: center;
    }

    
    .burger-menu {
        display: block; 
    }

    
    .hero {
        flex-direction: column;
        padding: 4rem 1rem 2rem; 
    }

    .hero-content {
        max-width: 100%; 
        text-align: center; 
    }

    .hero-content h1 {
        font-size: 2rem; 
    }

    .hero-content h2 {
        font-size: 1.5rem; 
    }

    .hero-content p {
        font-size: 1.125rem; 
        margin: 1rem 0;
    }

    .features {
        gap: 1rem; 
        margin: 2rem 0; 
    }

    
    .webplans {
        flex-direction: column;
        gap: 2rem; 
    }

    .plan {
        width: 80%;
    }

    .plan h2 {
        font-size: 1.375rem; 
    }

    .price {
        font-size: 1rem; 
    }

    .feature {
        font-size: 0.875rem; 
    }

    
    .navbar {
        top: 0.5%; 
    }

    
    .hero-image {
        width: 100%;
        margin-top: 2rem; 
    }

    .glow1, .glow2 {
        width: 10rem; 
        height: 10rem;
        filter: blur(5rem); 
    }

    .glow3 {
        width: 10rem; 
        height: 10rem;
    }

    
    .plan .feature .feature-value {
        font-size: 1rem;  
        color: #5750DA;
        font-weight: 700;
        margin-left: auto;
    }

    .x-promo .label {
        font-size: 1rem;  
        border-color: #8E50DA;
        color: #8E50DA;
    }

    
    .feature2 {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(40, 40, 40, 0.7);
        border: 0.5px solid rgba(33, 33, 33, 0.6);
        padding: 0.625rem;  
        font-size: 1rem;  
        border-radius: 0.5rem;
        margin-bottom: 0.5rem; 
        font-weight: 600;
        color: #5750DA;
    }

    
    .plan.x-plus .discount, .plan.x-pro .discount {
        position: absolute;
        top: -1rem;
        right: 0.625rem;
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
        font-size: 1.125rem;
        font-weight: 700;
        background: linear-gradient(to right, #5750DA, #8E50DA);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .container-features {
        max-width: 90%;  
        padding: 2rem 0;  
        flex-direction: column;  
        align-items: center;  
        margin: 0 auto;
    }

    
    .glow4, .glow5 {
        width: 10rem;  
        height: 10rem;
        filter: blur(5rem);  
    }

    .glow4 {
        top: 25%;
        left: 15%;
    }

    .glow5 {
        top: 60%;
        left: 55%;
    }

    
    .container-features h1 {
        font-size: 1.75rem;  
        margin-bottom: 1.5rem;  
    }

    
    .features-wrapper {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;  
        min-width: 12rem;  
    }

    .features-wrapper p {
        font-size: 0.875rem;  
    }

    
    .blue-box, .gray-box {
        width: 20rem;  
        height: 10rem;  
        padding: 1rem;  
        font-size: 0.875rem;  
        border-radius: 1rem;  
        backdrop-filter: blur(1rem);  
        z-index: 1;
        transition: 0.2s ease;
    }

    .gray-box:hover,
    .blue-box:hover {
        transform: scale(1.05);  
        transition: 0.2s ease;
    }

    .gray-box {
        border: 1px solid rgba(33, 33, 33, 0.62);
        background: rgba(33, 33, 33, 0.2);
    }

    
    .box-title {
        color: #5750DA;
        font-size: 1.25rem;  
        font-weight: 700;
        margin-bottom: 0.5rem;  
    }

    .blue-box {
        position: relative;
        border: 1px solid rgba(87, 80, 218, 0.62);
        background: linear-gradient(to bottom, rgba(87, 80, 218, 0.2), rgba(46, 43, 116, 0.2));
    }

    
    .blue-box-1::after,
    .blue-box-2::after,
    .blue-box-3::after {
        width: 12rem;  
        height: 12rem;  
        opacity: 0.8;
    }

    .blue-box-1::after {
        bottom: -2rem;
        right: 0rem;
        background-size: cover;
        max-width: 120px;
    }

    .blue-box-2::after {
        bottom: -1rem;
        right: 0;
        background-size: cover;
    }

    .blue-box-3::after {
        bottom: -1rem;
        right: 0;
        background-size: cover;
    }

    .blue-box * {
        position: relative;  
        z-index: 1;
    }

    .help-section {
        max-width: 90%;  
        padding: 1.5rem;  
        max-height: 35rem;
        top: 3rem;  
        flex-direction: column;  
        align-items: center;  
    }

    .support {
        flex-direction: column;  
        align-items: center;
        justify-content: center;
        gap: 1.25rem;  
    }

    
    .text-content {
        max-width: 90%;
        bottom: 0rem;
        left: 0;
        text-align: center;
        letter-spacing: normal;
        top: 2rem;
    }

    .text-content h2 {
        font-size: 1.5rem;  
        margin-bottom: 1rem;  
    }

    .text-content p {
        font-size: 1rem;  
        margin-bottom: 1rem;  
    }

    .support-btn {
        padding: 0.5rem 1rem;  
        font-size: 1rem;  
    }

    
    .image-content {
        max-width: 100%;  
        text-align: center;  
        margin-top: 4rem;
    }

    .image-content img {
        max-width: 16rem;  
        width: 100%;
        height: auto;
        bottom: 2rem;
    }

    
    .glow {
        width: 8rem;  
        height: 8rem;
        filter: blur(3.125rem);  
    }

    .glow-purple {
        width: 10rem;  
        height: 10rem;
        top: 10%;
        left: 5%;
    }

    .glow-blue {
        width: 4rem;
        height: 4rem;
        top: 85%;
        left: 30%;
    }

    .glow-purple2 {
        width: 4rem;
        height: 4rem;
        top: 80%;
        left: 70%;
    }
}

#reviews {
    font-family: 'Montserrat', sans-serif;
    padding: 2rem 0; 
    max-width: 60rem; 
    margin: 0 auto;
    text-align: center;
}

#reviews h2 {
    font-size: 2rem; 
    font-weight: bold;
    color: #5750DA; 
    margin-bottom: 2rem; 
}

.review {
    background: rgba(33, 33, 33, 1);
    padding: 1rem; 
    border-radius: 8px; 
    margin: 1rem 0; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

.review-author {
    font-size: 1.25rem; 
    font-weight: bold;
    color: #5750DA; 
    margin-bottom: 0.5rem; 
}

.review-rating {
    font-size: 1.5rem; 
    margin-bottom: 1rem; 
}

.rating-star {
    color: #5750DA; 
}

.review-text {
    font-size: 1rem; 
    color: #bdbdbd; 
    line-height: 1.5;
}

@media (max-width: 768px) {
    #reviews {
        padding: 1rem;
    }

    .review {
        padding: 1rem;
    }

    .review-author {
        font-size: 1.125rem; 
    }

    .review-text {
        font-size: 0.875rem; 
    }
}

.lang-switcher {
    display: flex;
    align-items: center;
}

.lang-switcher__list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem;
    border-radius: 0.75rem;
    background: rgba(33, 33, 33, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-switcher__button {
    appearance: none;
    border: 0;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 0.45rem 0.75rem;
    border-radius: 0.55rem;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    outline: none;
}

.lang-switcher__button:hover {
    background: rgba(87, 80, 218, 0.18);
    color: #ffffff;
}

.lang-switcher__button:focus-visible {
    box-shadow: 0 0 0 2px rgba(87, 80, 218, 0.45);
}

.lang-switcher__button--active {
    background: #5750DA;
    color: #ffffff;
}

.lang-switcher__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
}

@media (max-width: 767px) {
    .lang-switcher {
        width: 100%;
        justify-content: center;
        margin-top: 0.75rem;
    }

    .lang-switcher__list {
        width: auto;
    }

    .right-section {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .right-section .lang-switcher__button {
        font-size: 0.9rem;
    }
}

.logo a {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.logo img {
    display: block;
    width: auto;
    max-height: 3.4rem;
    object-fit: contain;
}

.right-section {
    gap: 0.65rem;
}

.lang-switcher {
    flex: 0 0 auto;
}

.lang-switcher__list {
    gap: 0.2rem;
    padding: 0.18rem;
    border-radius: 999px;
    background: rgba(18, 18, 18, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.lang-switcher__button {
    min-width: 2.15rem;
    height: 1.9rem;
    padding: 0 0.62rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    opacity: 0.88;
    border: 1px solid transparent;
}

.lang-switcher__button:hover {
    background: rgba(87, 80, 218, 0.14);
    opacity: 1;
}

.lang-switcher__button--active {
    background: #5750DA;
    color: #ffffff;
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.lang-switcher__label {
    min-width: 1.1rem;
    line-height: 1;
}

.reviews-header-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(33, 33, 33, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.reviews-summary__stars {
    color: #ffd564;
    letter-spacing: 0.08em;
}

.reviews-summary__value {
    font-weight: 700;
}

.reviews-summary__count {
    color: #bdbdbd;
}

@media (max-width: 767px) {
    .logo img {
        height: 2rem;
        max-height: 2rem;
        width: auto;
    }

    .lang-switcher {
        width: auto;
        margin-top: 0;
    }

    .lang-switcher__list {
        justify-content: center;
    }

    .lang-switcher__button {
        min-width: 1.82rem;
        height: 1.82rem;
        padding: 0 0.52rem;
        font-size: 0.67rem;
    }

    .right-section {
        gap: 0.85rem;
    }

    .reviews-header-block {
        flex-direction: column;
        align-items: flex-start;
    }
}

.lang-switcher__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}

.lang-switcher__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.logo img {
    height: 2.65rem;
    max-height: 2.65rem;
    width: auto;
}

.review-date {
    margin-top: -0.3rem;
    margin-bottom: 0.45rem;
    color: #bcbcbc;
    font-size: 0.85rem;
}

@media (max-width: 767px) {
    .logo img {
        height: 2rem;
        max-height: 2rem;
    }
}

.plan-order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 14px;
    padding: 11px 14px;
    border: 1px solid rgba(87, 80, 218, .28);
    border-radius: 14px;
    background: rgba(87, 80, 218, .18);
    color: #fff;
    font-size: .94rem;
    font-weight: 700;
    line-height: 1.2;
    transition: transform .2s ease, background-color .2s ease;
}

.plan-order-button:hover {
    transform: translateY(-1px);
    background: rgba(87, 80, 218, .28);
}

/* Global link style: links must not receive browser underlines in any state. */
a,
a:link,
a:visited,
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
}

