html {
  font-family: "Outfit", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  background-color: black;
  color: aquamarine;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  scroll-margin-top: 80px;
}

main {
  padding-top: 80px;
  flex: 1;
}

section {
  scroll-margin-top: 80px;
  max-width: 100vw;
  min-height: 70vh;
  margin: 0 auto;
}

button,
input,
textarea,
select {
  font: inherit;
  font-size: inherit;
}

strong {
  /* color: white; */
  color: #c0d806; 
}

/* nav.css */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(0, 0, 0, 0.474);
  z-index: 1000;
  overflow: hidden;
}

.content {
  padding-top: 80px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.losgeht {
  background-color: transparent;
  border: 2px solid aquamarine;
  color: aquamarine;
  border-radius: 10px;
  padding: 15px 30px;
  cursor: pointer;
  text-decoration: none;
}

.losgeht:hover {
  background-color: aquamarine;
  color: black;
  transition: background-color 0.3s, color 0.3s;
  box-shadow:
    0 0 0 1px rgba(46, 211, 198, 0.35),
    0 8px 24px rgba(46, 211, 198, 0.25),
    0 0 24px rgba(46, 211, 198, 0.18);
}

.logo {
  font-size: 30px;
  font-weight: 500;
  color: aquamarine;
  text-decoration: none;
}

.logo:hover {
  text-shadow:
    0 0 8px rgba(46, 211, 198, 0.7),
    0 0 18px rgba(46, 211, 198, 0.45),
    0 0 36px rgba(46, 211, 198, 0.25);
}

.menu-item a {
  font-size: 20px;
  text-decoration: none;
  color: aquamarine;
  display: flex;
  text-align: center;
}

.menu-item a:hover {
  text-shadow:
    0 0 8px rgba(46, 211, 198, 0.7),
    0 0 18px rgba(46, 211, 198, 0.45),
    0 0 36px rgba(46, 211, 198, 0.25);
}

.drop {
  display: flex;
  justify-content: space-between;
  margin-right: 20px;
  position: relative;
}

.logo-place {
  margin-left: 20px;
}

.menu-item {
  width: auto;
  justify-items: center;
  display: flex;
  gap: 50px;
}

.cheeseburger {
  position: relative;
}

.burger {
  display: none;
}

.nav-cta {
  margin-right: 20px;
  text-align: right;
}

.lang-switch {
  display: flex;
  text-align: center;
  gap: 8px;
  justify-content: center;
  margin: 20px 0;
}

.lang-switch button {
  font-size: 14px;
  padding: 6px 14px;
  border: 2px solid aquamarine;
  background: transparent;
  color: aquamarine;
  border-radius: 12px;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  transition: 0.2s;
  opacity: 0.7;
}

.lang-switch button.active {
  opacity: 1;
  background: aquamarine;
  color: black;
  font-weight: 600;
}

.lang-switch button:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(46, 211, 198, 0.35),
    0 8px 24px rgba(46, 211, 198, 0.25),
    0 0 24px rgba(46, 211, 198, 0.18);
}

.lang-switch2 {
  display: none;
}

.lang-btn {
  padding: 6px 14px;
  border: 2px solid aquamarine;
  background: aquamarine;
  color: black;
  border-radius: 12px;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 600;
}

.lang-btn button:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 1500px) {
  .logo-place {
    width: auto;
  }

  .logo {
    margin: 10px;
    margin-left: 0;
  }

  .menu-item {
    gap: 30px;
  }

  .nav-cta {
    display: none;
  }
}


@media (max-width: 1100px) {
  .header {
    overflow: visible;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 32px;
    background: none;
    cursor: pointer;
    z-index: 10;
    position: relative;
  }

  .burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: aquamarine;
    border-radius: 2px;
  }

  .menu-item {
    display: none;
  }

  .cheeseburger.open .menu-item {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.737);
    border-radius: 20px;
    top: 100%;
    right: 0;
    z-index: 2000;
    padding: 20px;
  }

  .menu-item a {
    margin-top: 20px;
  }
}

@media (max-width: 500px) {
  .lang-switch2 {
    display: block;
    margin-left: auto;
    margin-right: 20px;
  }

  main {
    padding-top: 70px;
  }

  section {
    scroll-margin-top: 70px;
  }

  .header {
    height: 70px;
  }

  .logo {
    font-size: 25px;
  }

  .lang-switch {
    display: none;
  }
}

/* hero.css */
@font-face {
  font-family: "Outfit";
  src: url("/static/fonts/Outfit-Regular.woff2") format("woff2"),
    url("/static/fonts/Outfit-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.hero {
  position: relative;
  overflow: hidden;
}

#err {
  background-color: #1E3A8A;
}

#err h1 {
  margin: 0;
  margin-top: 100px;
}

#err h2 {
  margin: 0;
}

#err p {
  color: aquamarine;
  margin-bottom: 100px;
}

#err a {
  text-decoration: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  /* для border-radius */
  border-radius: 30px;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.455);
  /* тёмный фильтр вместо brightness */
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 30px; */
  /* filter: brightness(0.6); */
  /* object-position: top; */
}

.hero-content {
  position: relative;
  z-index: 2;
}

.main-hero {
  position: relative;
  color: #ffffff;
  min-height: 87vh;
  border-radius: 30px;
  padding: 50px 20px;
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}

h1 {
  font-size: 64px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-inline: 15px;
}

.h1font {
  font-size: 65px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
  background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: 36px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 100px;
  background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  /* padding-inline: 20px; */
}

h3 {
  font-size: 23px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  /* padding-inline: 20px; */
  background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.dreiworte {
  font-size: 24px;
  padding-inline: 20px;
  margin-bottom: 40px;
  color: aquamarine;
}


.cta {
  background-color: transparent;
  border: 2px solid aquamarine;
  color: aquamarine;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
}

.cta:hover {
  background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  color: black;
  transition: background-color 0.3s, color 0.3s;
  box-shadow:
    0 0 0 1px rgba(46, 211, 198, 0.35),
    0 8px 24px rgba(46, 211, 198, 0.25),
    0 0 24px rgba(46, 211, 198, 0.18);
}

@media (max-width: 900px) {
  .main-hero {
    padding: 80px 10px;
    height: auto;
  }
}

@media (max-width: 700px) {
  .main-hero {
    padding: 80px 10px;
    height: auto;
  }

  .cta {
    font-size: 16px;
  }
}

/* Расширенная информация (узнать - свернуть) */
.cell a {
  display: block;
  padding-top: 50px;
  text-align: left;
  width: 100%;
}

#mini-cell a {
  padding-left: 50px;
}

#about-cell a {
  padding-left: 50px;
}

.more-link,
.less-link {
  background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  cursor: pointer;
  text-decoration: none;
}

.more-link:hover {
  text-decoration: underline;
}

.less-link:hover {
  text-decoration: underline;
}

.more-content {
  display: none;
}

/* mini.css */
.mini {
  background-color: black;
  color: #ffffff;
  border-radius: 30px;
  text-align: center;
  min-height: 70vh;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.mini-content {
  display: flex;
  width: auto;
}

.mini-block {
  padding: 0;
  margin: 0;
}

.mini-block h2 {
  margin: 0;
  padding-bottom: 40px;
}

.mini-img img {
  height: 100%;
  margin: 0;
  padding: 0;
  height: 400px;
}

.mini-img {
  width: 30%;
  padding-top: 30px;
}

.mini-text {
  width: 70%;
  margin: 0;
  text-align: left;
  color: aquamarine;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mt {
  color: aquamarine;
  padding: 0px;
  padding-left: 50px;
  padding-right: 100px;
  line-height: 1.6;
}

.mt a {
  background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

#super-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 1200px) {
  .mt {
    padding: 0px;
  }

  #mini-cell a {
    padding-left: 0;
  }
}

@media (max-width: 1000px) {
  .mt {
    padding-left: 40px;
    padding-right: 40px;
  }

  #mini-cell a {
    padding-left: 40px;
  }

  .mini-text {
    width: auto;
    padding-left: 30px;
  }

  .mini {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    padding-bottom: 20px;
  }
}

@media (max-width: 800px) {
  .mini-content {
    display: flex;
    flex-direction: column;
    align-content: center;
    max-width: 90%;
    width: 100%;
    height: 100%;
  }

  .mini-img,
  .mini-text {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .mini-text {
    padding-left: 10px;
  }

  .mini-img img {
    max-height: 500px;
    align-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .mt {
    padding-left: 20px;
    padding-right: 20px;
  }

  #mini-cell a {
    padding-left: 20px;
  }
}

@media (max-width: 500px) {
  .mini-img img {
    max-height: 400px;
    align-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .mt {
    padding-left: 0px;
    padding-right: 0px;
  }

  #mini-cell a {
    padding-left: 0px;
  }
}

/* about.css */
.aboutme {
  background-color: #1E3A8A;
  border-radius: 30px;
  text-align: center;
  min-height: 70vh;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding-top: 30px;
}

.about-content {
  display: flex;
  align-items: flex-start;
  width: auto;
  height: auto;
  padding: 30px;
  padding-right: 30px;
}

.about-img img {
  height: 400px;
  margin: 0;
  padding: 0;
  border-radius: 20px;
  text-align: center;
}

.wert h2 {
  margin: 0;
  padding-bottom: 40px;
}

.about-img {
  width: auto;
  padding-top: 25px;
  padding-right: 30px;
}

.about-text {
  width: auto;
  margin: 0;
  text-align: left;
  color: aquamarine;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.at {
  color: aquamarine;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
  line-height: 1.6;
}

.at a {
  background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.at li:before {
  content: "✔";
  margin-right: 8px;
  color: aquamarine;
}

@media (max-width: 1200px) {
  .at {
    padding-left: 50px;
    padding-right: 50px;
  }

  .about-img {
    width: 40%;
  }
}

@media (max-width: 1000px) {
  .about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-img {
    margin-top: 30px;
    width: 100%;
    padding-right: 0;
  }

  .about-text {
    width: auto;
  }
}

@media (max-width: 800px) {

  .about-img,
  .about-text {
    width: 100%;
    max-width: 100%;
  }

  .wert {
    padding: 10px;
  }

  .at {
    padding: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }

  #about-cell a {
    padding-left: 20px;
  }
}

@media (max-width: 500px) {
  .about-content {
    padding: 10px;
    padding-bottom: 20px;
  }

  .about-img img {
    height: 300px;
  }
}

/* faq.css */
.faq {
  height: auto;
}

.faq-items {
  width: 70%;
  margin-left: 15%;
  margin-right: 15%;
  padding-bottom: 50px;
  padding-top: 50px;
}

.faq-item {
  margin-bottom: 20px;
}

summary {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

summary::marker {
  display: none;
}

summary h3 {
    -webkit-text-fill-color: aquamarine;

}

.icon::before {
  content: "+";
}

details[open] .icon::before {
  content: "−";
}

.faq-all {
  background-color: #1E3A8A;
  border-radius: 30px;
  text-align: center;
  min-height: 70vh;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding-top: 30px;
}

.faq-all h3 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}

.faq-content {
  position: relative;
  padding-bottom: 30px;
  padding-left: 23px;
  text-align: left;
  line-height: 1.6em;
}

.faq-content a {
  background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.faq-content a:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .faq-items {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }
}

@media (max-width: 800px) {
  .faq-content {
    padding-left: 10px;

  }

  .faq-items {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
}

/* Product-block */
.product {
  display: flex;
  flex-direction: column;
  background-color: black;
  color: #ffffff;
  border-radius: 30px;
  text-align: center;
  min-height: 70vh;
  align-content: center;
  align-items: center;
  justify-content: center;
  justify-items: center;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  align-items: start;
}

#max-gap {
  gap: 20px;
}

.product-label {
  padding: 0;
  padding-inline: 20px;
  margin: 0;
}

.product-label h2 {
  margin: 0;
  padding-bottom: 10px;
}

.product-label h3 {
  margin: 0;
  padding-bottom: 50px;
}

.product-block {
  border-radius: 20px;
  background-color: #1E3A8A;
  color: aquamarine;
  padding: 20px;
  break-inside: avoid;
  margin-bottom: 20px;
}

.product-block h3 {
  font-weight: 700;
  font-size: 20px;
}

.product-block ul {
  font-size: 16px;
}

.product-block a {
  text-decoration: none;
  color: aquamarine;
}

.product-block a:hover {
  text-decoration: underline;
  color: aquamarine;
  text-shadow:
    0 0 8px rgba(46, 211, 198, 0.7),
    0 0 18px rgba(46, 211, 198, 0.45),
    0 0 36px rgba(46, 211, 198, 0.25);
  cursor: pointer;

}

.product-block li::before {
  content: "✓";
  color: white;
}

#accent {
  background-color: #0000FF;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#accent h3 {
  background: transparent;
  -webkit-text-fill-color: aquamarine;
}

#accent a {
  color: white;
}

.product-img img {
  margin: 0;
  padding: 0;
  max-width: 100%;
  height: auto;
  width: auto;
}

.product-img {
  padding-top: 30px;
}

iframe {
  border-radius: 20px;
  width: 100%;
  align-content: center;
}

.product-text {
  margin: 0;
  text-align: left;
  color: aquamarine;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding-inline: 30px; */
  padding-top: 30px;
}

.pt-btn {
  text-align: center;
}

.pt {
  font-size: 18px;
  color: rgba(127, 255, 212, 0.534);
  padding: 0px;
  line-height: 1.6;
}

.pt ul {
  content: "✔";
  margin-right: 8px;
  color: aquamarine;
}

.pt li::before {
  content: "✔";
  color: aquamarine;
}

.product-features {
  column-count: 2;
  column-gap: 40px;
}

@media (max-width: 1500px) {
  .product-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  iframe {
    width: 665px;
    height: 450px;
  }

  .product-img {
    justify-content: center;
  }

  .product {
    align-content: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
  }
}

@media (max-width: 1000px) {
  .product-content {
    width: 80%;
  }

  iframe {
    width: 602px;
    height: 400px;
  }
}

@media (max-width: 800px) {
  .product-content {
    width: 90%;
  }
}

@media (max-width: 700px) {
  .product-features {
    column-count: 1;
  }

  iframe {
    width: 291px;
  }

  .product-content {
    width: 70%;
  }
}

@media (max-width: 600px) {
  .product-content {
    width: 80%;
  }
}

@media (max-width: 500px) {
  .product-content {
    width: 90%;
  }

  iframe {
    width: 260px;
  }
}

@media (max-width: 400px) {
  .product-text {
    padding-inline: 10px;
  }
}

@media (max-width: 350px) {
  .product-text {
    padding-inline: 0;
  }

  .product {
    padding-inline: 0;
  }

  .product-content {
    width: 100%;
  }
}

/* prices.css */
.prices {
  display: flex;
  min-height: 70vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
  padding-bottom: 50px;
  background-color: #1E3A8A;
  color: black;
  border-radius: 30px;
  text-align: center;
  height: 100%;
}

.row-prices {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 95%;
  gap: 50px;
  margin-top: 70px;
}

#less-air {
  margin-top: 0;
}

.row-prices h1 {
  margin-top: 0;
}

#price-view {
  margin: 40px;
  text-align: center;
}

.most-popular {
  height: 25px;
  border: solid 0.5px transparent;
}

.most-popular p {
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bold {
  font-weight: 600;
  /* background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; */
}

#thebest {
  background: linear-gradient(60deg, aquamarine 0%, #9eb300 100%);
  color: white;
}

.a {
  height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: solid 0.5px transparent;
}

.b {
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: solid 0.5px transparent;
}

.c {
  height: 305px;
  margin-top: 30px;
  border: solid 0.5px transparent;
}

.d {
  height: 120px;
  border: solid 0.5px transparent;
  margin: 0;
  padding: 0;
  align-items: center;
  font-size: 65px;
  font-weight: 400;
  background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.e {
  height: 90px;
  border: solid 0.5px transparent;
}

.notice {
  height: 25px;
  font-size: smaller;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  align-content: center;
  background: linear-gradient(60deg, aquamarine 0%, #9eb300 100%);
  border: solid 0.5px transparent;
}

.notice p {
  margin: 0;
}

.most-popular,
.a,
.b,
.c,
.d,
.e,
.notice {
  padding: 0;
  margin: 0;
}

.prices-slot {
  background-color: white;
  border: 1px solid rgba(128, 128, 128, 0.462);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  color: black;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 50px;
  font-size: 18px;
  cursor: auto;
  margin-top: 0px;
  width: 400px;
  height: 650px;
  justify-content: center;
  align-items: center;
}

.packet {
  color: black;
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.price-list {
  text-align: left;
  margin-top: 10px;
  font-size: smaller;
}

.prices-slot.active {
  color: white;
  background-color: #0000FF;
  border: 1px solid white;
  cursor: auto;
}

.prices-slot.active .packet {
  color: white;
}

.prices-slot.active .cta1 {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.prices-slot.active .cta1:hover {
  background-color: white;
  border: 2px solid white;
  color: #0000FF;
  box-shadow:
    0 0 0 1px rgba(46, 211, 198, 0.35),
    0 8px 24px rgba(46, 211, 198, 0.25),
    0 0 24px rgba(46, 211, 198, 0.18);
}

.prices-slot.active h3 {
  color: white;
}

.prices-slot.active ul li::before {
  color: white;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 20px;
}

ul li::before {
  content: "✓";
  margin-right: 8px;
  color: black;
}

.cta1 {
  background-color: #ffffff00;
  color: black;
  border: 2px solid black;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 20px;
}

.cta1:hover {
  border: 2px solid aquamarine;
  background-color: aquamarine;
  color: black;
  transition: background-color 0.3s, color 0.3s;
  box-shadow:
    0 0 0 1px rgba(46, 211, 198, 0.35),
    0 8px 24px rgba(46, 211, 198, 0.25),
    0 0 24px rgba(46, 211, 198, 0.18);
}

.domain-hosting {
  color: aquamarine;
  margin-top: 20px;
  padding-inline: 20px;
}

.domain-hosting a {
  background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.domain-hosting a:hover {
  text-decoration: underline;
}

.learn-more a {
  background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.learn-more a:hover {
  text-decoration: underline;
}

@media (max-width: 1400px) {
  .row-prices {
    display: flex;
    height: auto;
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .d h1 {
    font-size: 50px;
  }

  .cta1 {
    font-size: 16px;
  }

  .notice {
    font-size: 12px;
  }
}

@media (max-width: 500px) {
  .prices {
    padding-inline: 0;
  }

  .prices-slot {
    width: 90%;
  }

  .b {
    font-size: 14px;
  }

  .c {
    font-size: 14px;
  }

  ul {
    padding: 20px;
  }

  .domain-hosting {
    font-size: 14px;
    line-height: 1.6em;
  }
}

/* contacts.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}

#contact-content {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  padding-top: 50px;
  width: 50%;
}

.contacts {
  display: flex;
  min-height: 70vh;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #1E3A8A;
  border-radius: 30px;
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
}

.contacts-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  padding-top: 30px;
  /* padding-inline: 20px; */
  /* text-align: center; */
  height: 100%;
}

.row-contacts {
  display: flex;
  align-items: flex-start;
  height: auto;
  gap: 50px;
  padding: 50px;
}

.map {
  padding-top: 30px;
}

.slogan {
  flex: 1;
  text-align: left;
  margin: 0;
  padding: 0;
}

.slogan p {
  padding-top: 50px;
}

.slogan-cta {
  color: aquamarine;
}

.form {
  display: block;
  flex: 2;
  margin-bottom: 30px;
  margin-top: 15px;
}

.form h2 {
  margin-top: 10px;
  margin-bottom: 20px;
}

.row-input {
  display: flex;
  min-width: 150px;
  gap: 15px;
  margin: 0;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 15px;
  overflow: visible;
}

.input-wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contact-cta a {
  text-align: center;
  text-decoration: none;
}

.contact-cta h2 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}

/* Стили ошибок всплывающих */
#toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1em;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.field-error {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 5px;
  background: rgba(0, 0, 0, 0.527);
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  opacity: 0;
  transform: translateY(-5px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 20;
  white-space: nowrap;
}

.field-error.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.checkbox-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkbox-label input {
  margin: 0;
  border: solid 2px yellow;
  width: 20px;
  height: 20px;
}

.row-input textarea {
  height: 9.6em;
  width: 100%;
}

.cont {
  flex: 1;
  /* равная ширина всех полей в строке */
  min-width: 150px;
  /* минимальная ширина для узких экранов */
  padding: 0.6em 1em;
  border-radius: 10px;
  border: 2px solid aquamarine;
  background: transparent;
  font-family: "Outfit", sans-serif;
  font-size: 1.1em;
  outline: none;
  color: aquamarine;
  box-sizing: border-box;
  margin: 0;
}

.cont::placeholder {
  opacity: 0.6;
  color: aquamarine !important;
}

textarea.cont::placeholder {
  opacity: 0.6;
  color: aquamarine !important;
}

[data-i18n] {
  transition: opacity 0.2s;
}

textarea::placeholder,
input::placeholder {
  color: inherit;
  opacity: 0.6;
}

.checkbox {
  color: aquamarine;
}

.checkbox a {
  text-decoration: underline;
  color: aquamarine;
}

.submit {
  background-color: aquamarine;
  border: 2px solid aquamarine;
  color: black;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 80px;
}

.submit:hover {
  box-shadow:
    0 0 0 1px rgba(46, 211, 198, 0.35),
    0 8px 24px rgba(46, 211, 198, 0.25),
    0 0 24px rgba(46, 211, 198, 0.18);
}

@media (max-width: 1500px) {
  /* .slogan h1 {
    margin-bottom: 20px;
  } */

  .checkbox-label {
    align-items: center;
    gap: 8px;
  }
}

@media (max-width: 1050px) {
  .row-contacts {
    flex-direction: column;
    gap: 40px;
  }

  .slogan,
  .form {
    width: 100%;
    padding: 0px;
  }

  .slogan {
    margin-bottom: 20px;
    /* font-size: 50px; */
  }

  .row-input {
    flex-direction: column;
  }

  .row-input input,
  .row-input textarea {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .row-input textarea {
    min-height: 140px;
  }

  .cont,
  #description {
    margin-bottom: 10px;
  }

  .checkbox-label input {
    width: 15px;
    height: 15px;
    margin: 0;
    vertical-align: top;
  }
}

@media (max-width: 500px) {
  .row-contacts {
    flex-direction: column;
    width: 100%;
    padding: 20px;
    padding-bottom: 50px;
    gap: 30px;
  }

  .slogan {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .form {
    padding: 0px;
    margin: 0px;
  }

  .row-input {
    flex-direction: column;
    margin: 15px 0;
  }

  .row-input input {
    width: 100%;
    margin: 0px;
  }

  .cont,
  #description {
    width: 100%;
    margin-bottom: 10px;
  }

  .checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: smaller;
  }

  .submit {
    font-size: 16px;
  }
}

@media (max-width: 450px) {
  .submit {
    font-size: 14px;
    padding-inline: 20px;
  }
}

@media (max-width: 380px) {
  .submit {
    font-size: 13px;
    padding-inline: 15px;
  }
}

@media (max-width: 330px) {
  .submit {
    font-size: 12px;
  }
}

/* modal.css */
.modal2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  background: #fff;
  color: #000;
  border-radius: 30px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  padding: 24px;
  z-index: 9999;
}

#thank {
  margin-bottom: 50px;
}

.thank-text {
  font-size: 18px;
  color: black;
  margin-bottom: 50px;
}

.modal-thank {
  background: white;
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  position: relative;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  z-index: 999;
}

.modal.hidden,
.modal-overlay.hidden {
  display: none;
}

.hidden {
  display: none;
}

@media (max-width: 500px) {
  .text-imp {
    margin: 5px;
    padding: 0px;
    width: auto;
  }

  .modal {
    width: 94%;
    padding-top: 24;
    padding: 14px;
    margin: 0px;
    position: fixed;
    z-index: 1000;
  }

  .modal-content {
    text-align: left;
    max-height: 80vh;
    overflow-y: 50vh;
    padding-right: 10px;
    padding-top: 20px;
  }
}

/* keller.css */
.keller {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, max-content);
  background-color: #000;
  padding: 20px 20px;
  padding-right: 150px;
  align-items: start;
  gap: 80px;
}

/* чтобы колонки не вылезали */
.keller>* {
  min-width: 0;
}

/* БРЕНД */
.keller-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 1px;
  color: aquamarine;
  text-decoration: none;
}

.footer-logo:hover {
  text-shadow:
    0 0 8px rgba(46, 211, 198, 0.7),
    0 0 18px rgba(46, 211, 198, 0.45),
    0 0 36px rgba(46, 211, 198, 0.25);
  cursor: pointer;
}

/* СОЦСЕТИ */
.footer-socials {
  display: flex;
  gap: 14px;
  padding-top: 20px;
  padding-bottom: 50px;
}

.social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid aquamarine;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.social svg {
  width: 20px;
  height: 20px;
  fill: aquamarine;
}

.social:hover {
  background-color: aquamarine;
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(46, 211, 198, 0.35),
    0 8px 24px rgba(46, 211, 198, 0.25),
    0 0 24px rgba(46, 211, 198, 0.18);
}

.social:hover svg {
  fill: #173B3F;
}

/* КОЛОНКИ */
.keller-links {
  display: grid;
  grid-template-rows: 28px auto;
  padding-top: 6px;
  gap: 10px;
  text-align: left;
}

.keller-zag {
  font-weight: 600;
  color: aquamarine;
  margin: 0 0 12px 0;
  line-height: 1.2;
  min-height: 22px;
}

.footer-copy,
.footer-mail a,
.keller-text,
.keller-links a {
  font-size: 16px;
  color: aquamarine;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.keller-links a:hover {
  text-decoration: underline;
}

#scrollTopBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transform: scale(0);
  transition: transform 0.2s ease;
  z-index: 999;
  background-color: aquamarine;
}

@media (max-width: 1500px) {
  .keller {
    grid-template-columns: repeat(4, max-content);
    gap: 48px 40px;
    padding: 32px 24px;
  }

  .keller-brand {
    grid-column: 1 / -1;
    /* бренд на всю ширину */
  }

  .footer-socials {
    padding-bottom: 30px;
  }
}

@media (max-width: 800px) {
  .keller {
    grid-template-columns: repeat(2, max-content);
    gap: 36px;
    padding: 28px 20px;
  }

  .keller-links {
    grid-template-rows: auto auto;
    padding-top: 30px;
  }

  .keller-zag {
    font-size: 15px;
  }

  .keller-text,
  .keller-links a,
  .footer-copy {
    font-size: 14px;
  }

  .footer-socials {
    padding-top: 16px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .keller {
    grid-template-columns: 1fr;
    padding: 22px 20px;
    gap: 28px;
  }

  .footer-logo {
    font-size: 20px;
  }

  .social {
    width: 40px;
    height: 40px;
  }

  .social svg {
    width: 18px;
    height: 18px;
  }

}

@media (max-width: 360px) {
  .keller {
    padding: 18px 20px;
    gap: 22px;
  }

  .footer-socials {
    gap: 10px;
  }

  .social {
    width: 36px;
    height: 36px;
  }

  .social svg {
    width: 16px;
    height: 16px;
  }

  .footer-copy {
    font-size: 12px;
  }
}

/* impres.css */
.impressum-content {
  background-color: #1E3A8A;
  border-radius: 30px;
  margin-inline: 20px;
  padding: 20px;
}

.impressum-content ul li::before {
  color: aquamarine;
}

.impressum {
  padding: 0px;
  margin: 0px;
}

.probel {
  height: 50px;
}

.text-imp {
  display: block;
  padding: 50px;
}

.text-imp h1 {
  padding: 0;
  margin: 0;
}

.text-imp h2 {
  padding: 0;
  margin: 0;
  margin-top: 50px;
}

.text-imp a {
  background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  background: #fff;
  color: #000;
  border-radius: 30px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  padding: 24px;
  z-index: 1000;
}

.close-btn {
  display: block;
  margin: 20px auto 0;
  /* сверху 20px, по центру, снизу 0 */
  margin-top: 16px;
  background-color: aquamarine;
  border: 2px solid aquamarine;
  color: black;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
}

.close-btn:hover {
  background-color: rgb(127, 255, 212);
  transition: background-color 0.3s, color 0.3s;
  box-shadow:
    0 0 0 1px rgba(46, 211, 198, 0.35),
    0 8px 24px rgba(46, 211, 198, 0.25),
    0 0 24px rgba(46, 211, 198, 0.18);
}

@media (max-width: 800px) {
  .rus-privacy {
    font-size: 45px;
  }
}

@media (max-width: 680px) {
  .rus-privacy {
    font-size: 35px;
  }

  .text-imp {
    margin: 5px;
    padding: 0px;
    width: auto;
  }
}

@media (max-width: 500px) {
  .rus-privacy {
    font-size: 25px;
  }

  .modal {
    width: 94%;
    padding-top: 24;
    padding: 14px;
    margin: 0px;
    position: fixed;
    z-index: 1000;
  }
}

@media (max-width: 370px) {
  .rus-privacy {
    font-size: 22px;
  }

  .impressum-content {
    padding: 15px;
  }
}

/* cookies.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.cookie-banner {
  position: fixed;
  bottom: -100px;
  /* стартовая позиция для анимации */
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 950px;
  background: rgba(0, 0, 0, 0.615);
  color: aquamarine;
  padding: 15px 25px;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0;
  transition: bottom 0.5s ease, opacity 0.5s ease;
}

.cook {
  text-align: center;
}

.cookie-banner.show {
  bottom: 0px;
  opacity: 1;
}

.cookie-banner a {
  color: aquamarine;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 0;
  margin: 0;
  gap: 20px;
}

.cookie-buttons button {
  padding: 8px 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

#accept-cookies {
  background: purple;
  border: solid 2px aquamarine;
  color: aquamarine;
}

#accept-cookies:hover {
  background: #00c48f;
}

#reject-cookies {
  background: transparent;
  color: aquamarine;
  border: 2px solid aquamarine;
}

#reject-cookies:hover {
  background: red;
}

@media (max-width: 1000px) {
  .cookie-banner {
    display: flex;
    flex-direction: column;
    width: 90%;
  }

  .cookie-buttons {
    margin-top: 20px;
  }
}

@media (max-width: 500px) {
  .cookie-banner {
    width: 80%;
    padding: 10px 15px;
  }

  .cook {
    width: 100%;
  }

  .cookie-buttons button {
    font-size: smaller;
  }
}

/* Font-size adaptive*/
@media (max-width: 1350px) {
  h2 {
    font-size: 32px;
  }
}

@media (max-width: 1250px) {

  .h1font,
  h1 {
    font-size: 65px;
  }

  h2 {
    font-size: 28px;
  }

  .dreiworte {
    font-size: 22px;
  }

  .checkbox-label {
    font-size: 16px;
  }

  #special-price {
    font-size: 65px;
  }
}

@media (max-width: 1000px) {

  .h1font,
  h1 {
    font-size: 55px;
  }

  #special-price {
    font-size: 55px;
  }

  h3 {
    font-size: 21px;
  }

  body {
    font-size: 16px;
  }

  body a {
    color: aquamarine;
  }

  .menu-item a {
    font-size: 18px;
  }

  .checkbox-label,
  .checkbox-text,
  .keller-text,
  .footer-copy,
  .keller-links a {
    font-size: 14px;
  }

  .cta {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .faq-question {
    font-size: 20px;
  }

  h2, .product-label h2 {
    margin-top: 20px;
  }
}

@media (max-width: 700px) {

  .h1font,
  h1 {
    font-size: 45px;
  }

  #special-price {
    font-size: 45px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .dreiworte {
    font-size: 19px;
  }

  .menu-item a {
    font-size: 17px;
  }

  .faq-question {
    font-size: 18px;
  }
}

@media (max-width: 500px) {

  .h1font,
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }

  .dreiworte {
    font-size: 16px;
  }

  body {
    font-size: 14px;
  }

  .menu-item a {
    font-size: 16px;
  }

  .cta {
    font-size: 14px;
  }

  .faq-question {
    font-size: 16px;
  }
}

@media (max-width: 450px) {
  .checkbox-label, .checkbox-text {
    font-size: 12px;
  }
}

@media (max-width: 350px) {
  .checkbox-label, .checkbox-text {
    font-size: 10px;
  }

  h1 {
    padding-inline: 0px;
  }

  .wert {
    padding-inline: 10px;
  }

  h3 {
    font-size: 15px;
  }
}


/* Services.css */
.basic-section {
  background-color: #1E3A8A;
  border-radius: 30px;
  text-align: center;
  min-height: 70vh;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding-top: 30px;
}

#contact-form-services,
#process-section,
#prices-section,
#for-section,
#first-contact-section {
  min-height: 75vh;
  background-color: #4b2e83;
}

#prices-section p {
  margin-bottom: 50px;
}

#leistungen-section,
#reviews-section,
#advantages-section {
  background-color: black;
}

.basic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 30px;
  padding-top: 0;
  align-items: start;
  justify-items: center;
}

.one-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px;
  padding-top: 0;
}

#less-width {
  display: grid;
  grid-template-columns: repeat(3, 350px);
  justify-content: center;
}

.basic-block {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  border-radius: 20px;
  background-color: #0038d3;
  color: aquamarine;
  padding: 30px;
  /* border: solid 2px #0000FF; */
  /* border: solid 1px transparent; */
  /* break-inside: avoid; */
  /* margin-bottom: 20px;   */
}

#near-blocks {
  width: 600px;
  background-color: #8e44ad;
}

.basic-block:hover {
  /* border: solid 1px aquamarine; */
  /* border: solid 2px #0000FF; */
  /* background-color: #0000FF; */
  box-shadow:
    0 0 0 1px rgba(46, 211, 198, 0.35),
    0 8px 24px rgba(46, 211, 198, 0.25),
    0 0 24px rgba(46, 211, 198, 0.18);
}

#light-block {
  background-color: #4b2e83;
  /* border: solid 2px #8e44ad;   */
  width: 415px;
}

#light-block:hover {
  background-color: #8e44ad;
  box-shadow:
    0 0 0 1px rgba(46, 211, 198, 0.35),
    0 8px 24px rgba(46, 211, 198, 0.25),
    0 0 24px rgba(46, 211, 198, 0.18);
}

.basic-block p {
  text-align: left;
}

.basic-block a {
  text-decoration: none;
  margin-bottom: 30px;
  align-self: center;
}

.basic-block img {
  align-self: center;
}

.basic-block ul {
  text-align: left;
  margin-bottom: 20px;
  padding: 10px;
}

.basic-block li:before {
  content: "•";
  color: aquamarine;
}

#block-zag {
  -webkit-text-fill-color: white;
}

.basic-btn {
  display: inline-block;
  width: fit-content;
  background-color: transparent;
  border: 2px solid aquamarine;
  color: aquamarine;
  border-radius: 10px;
  padding: 15px 30px;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 20px;
}

.basic-btn:hover {
  background-color: aquamarine;
  color: black;
  transition: background-color 0.3s, color 0.3s;
  box-shadow:
    0 0 0 1px rgba(46, 211, 198, 0.35),
    0 8px 24px rgba(46, 211, 198, 0.25),
    0 0 24px rgba(46, 211, 198, 0.18);
}

.reviews {
  padding-bottom: 50px;
}


.end-block a {
  display: inline-block;
  margin-top: 50px;
  margin-bottom: 50px;
  text-decoration: none;
}

.process {
  /* background: #245e6a; */
  padding: 20px 20px;
}

/* ===== LIST + CENTRAL LINE ===== */

.process__list {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* центральная линия — всегда от первого до последнего шага */
.process__list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 7px;
  background: rgba(255, 255, 255, .35);
  border-radius: 2px;
  transform: translateX(-50%);
}

/* ===== CARDS ===== */

.process__card {
  position: relative;
  width: 46%;
  background: #ffffff;
  padding: 30px 34px;
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, .06);

  box-shadow:
    0 14px 34px rgba(0, 0, 0, .14),
    inset 0 1px 0 rgba(255, 255, 255, .6);

  transition: transform .25s ease, box-shadow .25s ease;
}

.process__card:hover {
  transform: translateY(-5px);
  cursor: pointer;
  box-shadow:
    0 22px 46px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .6);
}

/* стороны + ступенчатый ритм */

.process__card.left {
  margin-right: auto;
}

.process__card.right {
  margin-left: auto;
  margin-top: 0px;
}

/* ===== MARKERS — идеально центрированы ===== */

.process__card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: aquamarine;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, .18);
}

/* формула: половина контейнера − половина карточки */

.process__card.left::after {
  left: calc(50% + (100% / 1.7));
}

.process__card.right::after {
  left: calc(50% - (100% / 1.7));
}


/* ===== TEXT ===== */

.step {
  letter-spacing: 1.6px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  text-shadow: none;
}

.process__card h3 {
  font-weight: 500;
  color: #1E5F73;
  text-align: center;
  margin: 0 0 10px;
  margin-bottom: 20px;
}

.process__card p {
  margin: 0;
  color: black;
  line-height: 1.6em;
  text-align: left;
}

@media (max-width: 900px) {
  .process {
    padding: 70px 16px;
  }

  .process__list::before {
    left: 24px;
    transform: none;
  }

  .process__card {
    width: auto;
    margin-left: 70px !important;
    margin-right: 50px !important;
    margin-top: 0 !important;
    margin-bottom: 50px;
    padding: 22px 24px;
  }

  .process__card::after {
    left: -52px !important;
    transform: translateY(-50%);
  }
}

@media (max-width: 500px) {
  .process {
    padding: 10px 0px;
  }

  .process__card {
    margin-right: 20px !important;
  }
}

@media (max-width: 400px) {
  .process__card {
    margin-left: 50px !important;
  }

  .process__card::after {
    left: -32px !important;
  }
}

.adv-items {
  width: 100%;
  padding-bottom: 30px;
}

summary {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

summary::marker {
  display: none;
}

.adv-icon::before {
  content: "▼";
  font-size: 20px;
}

details[open] .adv-icon::before {
  content: "▲";
}

.adv-all {
  /* background-color: #1E3A8A; */
  border-radius: 30px;
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  padding-top: 0px;
}

.adv-all h3 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}

.adv-content {
  position: relative;
  padding-bottom: 30px;
  padding-left: 23px;
  text-align: left;
  line-height: 1.6em;
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
  margin-bottom: 100px;
}

.adv-image {
  display: flex;
  justify-content: right;
  align-items: start;
  padding-inline: 20px;
}

.adv-image img {
  width: 400px;
  height: auto;
  border-radius: 20px;
  padding-top: 5px;
}

#adv-cta-btn {
  display: block;
  width: fit-content;
  margin-right: auto;
}

.baseline p {
  margin-top: 170px;
  /* align-items: baseline;   */
  color: aquamarine;
  margin-bottom: 0;
  padding-bottom: 0;
}

.kostenlos {
  background-color: aquamarine;
  border: 2px solid aquamarine;
  color: black;
  border-radius: 10px;
  padding: 15px 30px;
  margin-left: 30px;
  cursor: pointer;
  text-decoration: none;
}

.kostenlos:hover {
  transition: background-color 0.3s, color 0.3s;
  box-shadow:
    0 0 0 1px rgba(46, 211, 198, 0.35),
    0 8px 24px rgba(46, 211, 198, 0.25),
    0 0 24px rgba(46, 211, 198, 0.18);
}

#first-contact-cta {
  margin-left: 0px;
}

.review-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  /* расстояние между фото и текстом */
  background-color: white;
  border: solid 2px transparent;
  padding: 24px;
  border-radius: 12px;
  height: 100%;
  justify-content: flex-start;
  color: black;
}

.review-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.review-content p {
  margin: 0;
  text-align: left;
}

.review-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.star {
  color: #fbbc04;
  width: fit-content;
}

.reviewer-name {
  font-weight: bold;
  margin-top: 10px;
  color: black;
}

.review-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prices-short {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

.prices-slot-short {
  background-color: white;
  border: 1px solid rgba(128, 128, 128, 0.462);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  color: black;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 50px;
  /* font-size: 18px; */
  cursor: auto;
  margin-top: 0px;
  width: 400px;
  height: 220px;
  justify-content: center;
  align-items: center;
}

.packet-name {
  height: 75px;
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; */
  border: solid 0.5px transparent;
  margin: 0;
  padding: 0;
  padding-top: 30px;
}

.first-contact {
  display: flex;
  flex-direction: column;
  justify-items: center;
  gap: 10px;
  max-width: 800px;
  margin: 40px auto;
  padding-inline: 20px;
}

.contact-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 30px;
  position: relative;
  padding: 0;
  align-items: start;
  height: auto;
}

.step-number {
  font-weight: 700;
  position: relative;
}

/* вертикальная линия */
.step-number::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 45px;
  width: 4px;
  height: calc(75%);
  background: rgba(255, 255, 255, .35);
}

/* у последнего шага линия не продолжается */
.contact-step:last-child .step-number::after {
  display: none;
}

.step-content {
  height: fit-content;
}

.step-content h3 {
  margin: 0 0 10px 0;
  text-align: left;
}

.step-content p {
  margin: 0;
  line-height: 1.6;
  text-align: left;
}

.zagolovok {
  padding-inline: 30px;
}

@media (max-width: 1400px) {
  .basic-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1200px) {
  #less-width {
    grid-template-columns: repeat(2, 350px);
  }
}


@media (max-width: 1000px) {
  .basic-grid {
    grid-template-columns: 1fr;
  }

  .adv-grid {
    grid-template-columns: 1fr;
  }

  .adv-image {
    justify-content: center;
  }

  #adv-cta-btn {
    display: block;
    width: fit-content;
    margin: 0 auto 0;
  }

  .adv-all {
    display: flex;
    width: 100%;
    margin: 0;
    flex-direction: column;
    justify-content: center;
  }

  .adv-items {
    max-width: 400px;
    margin: 0 auto;
  }

  summary {
    flex-direction: column;
    align-items: left;
    gap: 10px;
  }
}


@media (max-width: 900px) {
  .step-number::after {
    top: 60px;
    height: calc(80%);
  }
}


  @media (max-width: 800px) {
  .basic-block img {
    width: 80px;
    height: 80px;
  }

  #near-blocks {
    width: 100%;
  }

  #less-width {
    grid-template-columns: repeat(1, 350px);
  }
}

@media (max-width: 700px) {
  .step-number::after {
    top: 55px;
    height: calc(80%);
  }
}

@media (max-width: 650px) {
  .end-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
  }

  .contact-step {
    height: auto;
  }

  .end-block a {
    margin: 0;
    width: 245px;
  }

  .kostenlos {
    margin: 0;
  }

  #first-contact-cta {
    margin-bottom: 50px;
  }

  .adv-image img {
    width: 100%;
  }

}

@media (max-width: 500px) {
  .prices-slot-short {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .prices-short {
    padding-inline: 20px;
  }

  #light-block {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .basic-grid, .one-grid {
    padding-inline: 10px;
  }

  .basic-block img {
    width: 60px;
    height: 60px;
  }

  .zagolovok {
    padding-inline: 10px;
  }

  .adv-image {
    padding-inline: 0;
  }

  .adv-items {
    max-width: 100%;
  }

  #less-width {
    grid-template-columns: repeat(1, 320px);
  }

  .first-contact {
    padding-left: 0;
  }

  .contact-step {
    gap: 10px;
  }
}

@media (max-width: 350px) {
  .basic-grid, .one-grid {
    padding-inline: 0px;
  }

  #for-section {
    background-color: black;
  }

  #less-width {
    grid-template-columns: repeat(1, 280px);
  }
}


/* Проверка веб-сайта */
#website-check {
    min-height: 87vh;
    padding-bottom: 50px;
}

#website-check-description {
    margin-bottom: 30px;
}

.webcheck-rules {
    padding-top: 50px;
}

.webcheck-rules p {
    padding-inline: 300px;
    text-align: center;
}

.webcheck-rules li::before {
    content: "✓";
}

.webcheck-rules ul {
    text-align: left;
    display: inline-block;
}

.webcheck-rules h3 {
    -webkit-text-fill-color: aquamarine;

}

.quiz-wrapper, .result-card {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.quiz-card {
    width: 1200px;
    background: white;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quiz-answers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.answer-btn {
  background-color: transparent;
  border: 2px solid #4b2e83;
  width: 300px;
  color: #4b2e83;
  border-radius: 10px;
  padding: 15px 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.answer-btn:hover {
  background-color: #8e44ad;
  border: 2px solid #8e44ad;
  color: white;
  transition: background-color 0.3s, color 0.3s;
  box-shadow:
        0 0 0 1px rgba(138, 43, 226, 0.35),
        0 8px 24px rgba(138, 43, 226, 0.25),
        0 0 24px rgba(138, 43, 226, 0.18);   
}

.progress-bar {
    height: 8px;
    background: #e8ecf3;
    border-radius: 6px;
    margin-bottom: 25px;
    overflow: hidden;
}

#progress-fill {
    height: 100%;
    width: 0%;
    background: #0000FF;
    transition: width 0.3s ease;
}

.progress-text {
    color: black;
    margin-bottom: 10px;
}

.quiz-card {
    transition: all 0.3s ease;
}

.score {
    font-weight: 400;
    margin-bottom: 20px;
    -webkit-text-fill-color:#4b2e83;
}

.cta-check {
  /* margin-top: 50px; */
  background-color: #4b2e83;
  border: 2px solid #4b2e83;
  width: 370px;
  color: white;
  border-radius: 10px;
  padding: 15px 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-check:hover {
  background-color: #8e44ad;
  border: 2px solid #8e44ad;
  color: white;
  transition: background-color 0.3s, color 0.3s;
  box-shadow:
        0 0 0 1px rgba(138, 43, 226, 0.35),
        0 8px 24px rgba(138, 43, 226, 0.25),
        0 0 24px rgba(138, 43, 226, 0.18);   
}

.cta2-check {
  background-color: transparent;
  border: 2px solid #4b2e83;
  color: #4b2e83;
  border-radius: 10px;
  padding: 15px 30px;
  margin-left: 30px;
  cursor: pointer;
  text-decoration: none;
}

.cta2-check:hover {
  transition: background-color 0.3s, color 0.3s;
  background-color: #8e44ad;
  border: 2px solid #8e44ad;
  color: white;
  box-shadow:
    0 0 0 1px rgba(75, 46, 131, 0.35),
    0 8px 24px rgba(75, 46, 131, 0.25),
    0 0 24px rgba(75, 46, 131, 0.18);
}

.result-card {
    display: none;
}

#question {
    margin-bottom: 20px;
    -webkit-text-fill-color: black;
}

#category-results, #result-message {
    color: black;
}

.results-grid {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    /* padding-top: 30px; */
    gap: 70px;
    margin-top: 30px;
    align-items: stretch;
}

#category-results {
    display: flex;
    flex-direction: column;
    width: 350px;
    height: 100%;
    gap: 8px;
    text-align: left;
    background-color: #4a2e8314;
    color: white;
    border-radius: 20px;
    padding: 20px;
}

.recommendations {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

#result-message {
    /* display: block; */
    margin: 0;
    text-align: center;
}

.website-check-cta {
    display: flex;
    justify-content: center;
    text-decoration: none;
    margin-top: auto;
}

/* Мини-форма для запроса аудита сайта */
.popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup.hidden {
    display: none;
}

.mini-form-label {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 8px;
}

.mini-form-label h1, .mini-form-label h2 {
    text-align: center;
    width: 100%;
    padding-inline: 0;
}

.mini-form-label h2 {
    margin-bottom: 70px;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    animation: fadeIn .25s ease;
    /* border: solid 2px yellow; */
}

.popup-window {
    background-color: #8e44ad;
    position: relative;
    width: min(950px, 95%);
    /* max-height: 80vh; */
    border-radius: 20px;
    padding-inline: 30px;
    padding-top: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
    animation: popupIn .35s cubic-bezier(.2, .8, .2, 1);
    /* border: solid 2px yellow; */
}

.submit-b button {
    margin-left: auto;
    margin-right: auto;
    display: block;
    justify-content: center;
    margin-top: 70px;
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.privacy-label {
    position: relative;
    /* display: inline-flex; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cont-mini {
  /* flex: 1; */
  /* равная ширина всех полей в строке */
  width: 100%;
  min-width: 150px;
  /* минимальная ширина для узких экранов */
  padding: 0.6em 1em;
  border-radius: 10px;
  border: 2px solid aquamarine;
  background: transparent;
  font-family: "Outfit", sans-serif;
  font-size: 1.1em;
  outline: none;
  color: aquamarine;
  box-sizing: border-box;
  margin: 0;
}

.cont-mini::placeholder {
  opacity: 0.6;
  color: aquamarine;
}

.mini-form-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

@media (max-width: 1300px) {
    .quiz-card {
      width: 90%;
      /* margin-inline: 20px; */
    }

    .results-grid {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 30px;
    }

    .recommendations {
      margin-top: 50px;
      gap: 70px;
    }
}

@media (max-width: 850px) {
    .website-check-cta {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .cta2-check, .cta-check {
      margin-left: 0px;
      width: 100%;
    }
}

@media (max-width: 550px) {
    #question {
      padding: 0;
    }

    #category-results {
      width: 100%;
    }
}

@media (max-width: 450px) {
    .answer-btn {
      width: 100%;
      /* margin-inline: 20px; */
    }

    .quiz-card {
      padding: 20px;
    }

    .score {
      padding: 0;
    }

    .webcheck-rules ul, .webcheck-rules h3 {
      padding-inline: 10px;
    }

}

@media (max-width: 400px) {
    #category-results {
      font-size: 13px;
    }

    .popup-window {
      padding-inline: 20px;
    }
}

@media (max-width: 350px) {
    #category-results {
      font-size: 12px;
    }
}


/* Статьи для блога */
.article-content {
  background-color: #1E3A8A;
  border-radius: 30px;
  margin-inline: 20px;
  padding: 20px;
}

.article-text {
  display: block;
  padding: 50px;
  width: 70%;
}

.article-text h1 {
  padding: 0;
  padding-bottom: 50px;
  margin: 0;
}

.article-text h2 {
  padding: 0;
  margin: 0;
  margin-top: 70px;
  margin-bottom: 20px;
}

.article-text h3 {
  padding-top: 40px;
  -webkit-text-fill-color: rgba(127, 255, 212, 0.262);
}

.article-text a {
  background: linear-gradient(60deg, #9eb300 0%, aquamarine 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.article-content ul {
  padding-top: 0;
}

.article-content ul li::before {
  color: aquamarine;
}

@media (max-width: 1300px) {
  .article-text {
    width: 80%;
  }
}

@media (max-width: 1000px) {
  .article-text {
    width: 90%;
  }
}

@media (max-width: 800px) {
  .article-text {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .article-text {
    margin: 5px;
    padding: 0px;
    width: auto;
  }
}

/* @media (max-width: 650px) {
  .losgeht a, .kostenlos a {
    width: 222px;
  }
} */

@media (max-width: 370px) {
  .article-content {
    padding: 15px;
  }
}
