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

body {
  font-family: "Play-fair Display";
  background: #050816;
  color: #ffffff;
  min-height: 100vh;
}

/* ФОН */

.page-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 0%, #7b3cff 0, transparent 55%),
    radial-gradient(circle at 90% 100%, #00d4ff 0, transparent 55%),
    #050816;
}

.page-bg .bg {
  position: absolute;
  pointer-events: none;
}

/* пример позиционирования, подставь свои картинки
.bg-top { top: 0; left: 0; width: 100%; }
.bg-bottom { bottom: 0; right: 0; width: 100%; }
*/

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

/* HEADER */

.header {
  padding: 26px 0 10px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.logo-subtitle {
  font-size: 12px;
  opacity: 0.7;
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.lang-switch {
  display: flex;
  gap: 6px;
}

.lang-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #ffffff;
  padding: 4px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn_active,
.lang-btn:hover {
  background: #ffffff;
  color: #050816;
}

/* HERO */

.hero {
  padding: 40px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
}

.hero-title {
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  max-width: 430px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 36px;
  border-radius: 999px;
  border: none;
  background: #8E32C6;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.65);
  opacity: 0.96;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 45px rgba(0, 0, 0, 0.8));
}

/* SECTIONS COMMON */

.section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 24px;
}

/* BENEFITS */

.benefits {
  padding: 40px 0 60px;
}

.benefits-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

 .benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
} 

.benefit-icon img {
  width: 80px;
  height: auto;
  margin-bottom: 16px;
}

.benefit-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.benefit-text {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}

/* ADVANTAGES */

.advantages {
  padding: 10px 0 40px;
}

/* REVIEWS */

.reviews {
  padding: 40px 0 60px;
}

.reviews-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.review-card {
  background: rgba(5, 11, 26, 0.9);
  border-radius: 18px;
  padding: 24px 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  background: linear-gradient(#00E5E6, #00A8f7,#9a76f9, #cc5ec2);
  width: 255px;
  height: 292px;
}
.review-card2 {
   background: linear-gradient(#FF68B4, #FF45E1, #CE3AFF, #8961FF );
}
.review-card3 {
    background: linear-gradient(#FFE128, #FF9B5C, #FF8381, #FF5489);
}
.review-icon img {
  width: 31px;
  height: 31px;
  margin-bottom: 14px;
  border-radius: 90%;
}

.review-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.review-author {
  font-size: 13px;
  opacity: 0.7;
  
}

/* ORDER */

.order {
  padding: 40px 0 70px;
}

.order-inner {
  display: grid;
  /* grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px; */
  align-items: flex-start;
}

.order-form {
  background: rgba(5, 11, 26, 0.95);
  border-radius: 18px;
  padding: 26px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.form-field span {
  opacity: 0.85;
}

.form-field input {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #ffffff;
  padding: 8px 14px;
  font-size: 13px;
  outline: none;
}

.form-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn-order {
  margin-top: 6px;
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 26px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  opacity: 0.85;
}

.footer-contacts p + p {
  margin-top: 4px;
}

.footer-logo {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner,
  .order-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    order: -1;
  }

  .benefits-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .benefits-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 38px;
  }
}
.hero {
    background-image: url('img.cat/image.webp');
    width: auto;
    height: 800px;
    display: flex;
    align-items: center; 
    justify-content: center;
}
nav{
    display: flex;
    align-items: center; 
    justify-content: center;
}
.nav-link {
    margin-left: 20px;
    margin-right: 20px;
}
.logoimg {
    width: 200px;
    height: 100px;
    border-radius: 50%;
}
div.benefitcattainer {
    border: 5px solid #8e32c6;
}
div.marginclass {
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}
.benefitcattainer {
    display: flex;
    align-items: center; 
    justify-content: center;
    align-self: center;
    /* width: 600px; */
    height: 396px;
}
div.benefitcattainer {
    display: flex;
    align-items: center; 
    justify-content: center;
    align-self: center;
    flex-direction: column;
}
section#benefits img {
    width: 240px;
    height: 240px;
} 
h3.benefit-title {
    font-family: 'Playfair Display';
    font-weight: 151px;
     font-size: 51px;
}
div.reviews1 {
    color: linear-gradient(#00E5E6, #00A8f7,#9a76f9, #cc5ec2);
}
div.reviews2 {
    color: linear-gradient(#FF68B4, #FF45E1, #CE3AFF, #8961FF );
}
div.reviews3 {
    color: linear-gradient(#FFE128, #FF9B5C, #FF8381, #FF5489);
}
section.reviews {
    background-image: url('img.cat/image\ \(6).webp') ;
    background-repeat: no-repeat;
    background-size: cover;
    width: 1521px;
    height: 520px;
    display:  flex;
    align-self: center;
    justify-self: center;
}
section.benefits {
    background-image: url('img.cat/image\ \(5).webp') ;
    background-repeat: no-repeat;
    background-size: cover;
    width: 1521px;
    height: 520px;
    display:  flex;
    align-self: center;
    justify-self: center;
}
section.order {
    background-image: url('img.cat/image\ \(8).webp') ;
    background-repeat: no-repeat;
    background-size: cover;
    width: 1521px;
    height: 600px;
    display:  flex;
    align-self: center;
    justify-self: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* div.order-inner {
  margin-left:500px ;
} */
footer {
    background-color: black;
    width: 1521px;
    height: 316px;
}
div.review-icon{
  display: flex;
}
.review-text {
  font-size: 24px;
}
.footer-contacts p {
  font-size: 24px;
  left: 185px;
}
.footer-emails  a {
  font-size: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.footer-contacts {
  margin-bottom: 1px white;
}
.footertop {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer-copy {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 185px;
}
.footer-logo img {
  width: 100px;
  height: 100px;
  
}
section.order input{
  width: 250;
  height: 250;
  opacity: 1;
  top: 2192px;
  left: 375px;
  border-radius: 50px;

}
div.order-inner input{
  width: 690;
  height: 60;
  opacity: 1;
  top: 2192px;
  left: 375px;
  border-radius: 50px;
  background: #FFFFFF;
;
}
section.order-section {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    /* background: radial-gradient(circle at center,
        #00eaff 0%,
        #003a6b 40%,
        #00142a 100%
    ); */
    background-image: url(img.cat/image\ \(8\).webp);
  background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
  width: 100%;
    position: relative;
    overflow: hidden;
}


body::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;

    background-image: url("leaf-left.png"); /* вставь своё имя файла */
    background-size: contain;
    background-repeat: no-repeat;

    opacity: 0.55;
    pointer-events: none;
}

/* Лист справа */
body::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;

    background-image: url("leaf-right.png"); /* вставь своё имя файла */
    background-size: contain;
    background-repeat: no-repeat;

    opacity: 0.55;
    pointer-events: none;
}
h1.hero-title {
  font-size: 200px;
}
.cc {
  font-size: 50px;
}
section::backdrop{
  width: 100%;
}
.hero-inner {
  background-size: cover;
  background-repeat: no-repeat;
}
img#hehehe {
  
  width: 100%;
  height: ;
 display: flex;
 align-self: center; 
}