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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(to bottom right, #0a0a0a, #161f1c, #131111);
    color: #f5f5f7;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(to right, rgb(0 0 0 / 85%), rgb(17 23 21 / 85%));
  backdrop-filter: blur(20px) saturate(150%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: background 0.3s ease;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #24a595;
  letter-spacing: -0.5px;

}

a {
  color: #457cb5;
  text-decoration: none;
}

a:hover {
  color: #5699df;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #d1d1d6;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #2997ff;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #ffffff;
}

nav a:hover::after {
  width: 100%;
}


.hero {
  margin-top: 100px;
  text-align: center;
  padding: 5rem 2rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f5f5f7;
}

.hero p {
  font-size: 1.25rem;
  color: #86868b;
}






.headline {
  max-width: 900px;
  margin: 3rem auto 2rem;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #f5f5f7;
}

.headline h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.headline h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #a1a1aa;
  margin-bottom: 1rem;
}

.headline p {
  font-size: 1.05rem;
  color: #7b7b7b;
  line-height: 1.5;
}



.headline-line {
  width: 160px;
  height: 0.5px;
  background: #2997ff;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.headline:hover .headline-line {
  width: 80px;
}










.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
  padding: 0rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
  justify-content: center;
  align-items: stretch;
}

.grid-item {
    background: linear-gradient(145deg, #1a4a3c, #131513);
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: background 1s ease, transform 0.9s ease, box-shadow 0.9s ease;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}


.grid-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

.grid-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0%;
  height: 0.5px;
  background: #2997ff;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.grid-item:hover::after {
  width: 60%;
}


.grid-item h2 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #f5f5f7;
}

.grid-item i {
  font-size: 2rem;
  color: #2997ff;
  transition: transform 0.3s ease;
}

.grid-item:hover i {
  transform: scale(1.15);
}

.grid-item.whatsapp i {
  color: #25D366;
}

.grid-item.telegram i {
  color: #0088cc;
}

.grid-item.vk i {
  color: #4c75a3;
}

.grid-item.instagram i {
  color: #E1306C;
}

.grid-item.viber i {
  color: #7360f2;
}

.grid-item.odnoklassniki i {
  color: #ee8208;
}

.grid-item.facebook i {
  color: #1877f2;
}

.grid-item.email i {
  color: #ff9500;
}

.grid-item.phone i {
  color: #34c759;
}

























.services {
  max-width: 1000px;
  margin: 2rem auto 4rem;
  padding: 0 1.5rem;
  color: #7b7b7b;
  font-size: 1rem;
  line-height: 1.4;
}

.services h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #a1a1aa;
  text-align: center;
  font-weight: 600;
}

.services h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #c5c5c5;
  font-weight: 500;
}

.services p {
  margin-bottom: 1rem;
}

.services ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.services ul li {
  margin-bottom: 0.7rem;
}






.contact-section {
  padding: 1rem 2rem;
  border-radius: 20px;
  max-width: 1000px;
  margin: 5rem auto;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.contact-left,
.contact-right {
  flex: 1 1 400px;
  color: #f5f5f7;
}

.contact-left h2,
.contact-right h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #adadad;
}

.contact-left .conf {
  color: #888888;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.contact-left .fast-reply {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #d1d1d6;
}

.messenger-btn {
  display: block;
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.telegram {
  background-color: #e7f1ea;
  color: #3271d8;
}

.whatsapp {
  background-color: #e7f1ea;
  color: #027063;
}

.vk {
  background-color: #e7f1ea;
  color: #3c5e95;
}

.messenger-btn:hover {
  background: #00ffe1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 15px rgba(41, 151, 255, 0.8);
}

.messenger-btn i,
.contact-right button i {
  margin-right: 0.5rem;
}


.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-right input {
  background: transparent;
  border: none;
  border-bottom: 0.5px solid #2997ff;
  padding: 0.8rem 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-right input:focus {
  border-bottom-color: #00ffe1;
}

.contact-right button {
  padding: 1rem;
  background: #e7f1ea;
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-right button:hover {
  background: #00ffe1;
}






.site-footer {
  background: linear-gradient(to right, #0c0f0f, #141f1a);
  padding: 1.5rem 2rem;
  color: #cccccc;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}


.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.footer-left a {
  color: #cccccc;
  text-decoration: none;
  margin-right: 1.5rem;
  transition: color 0.3s ease;
}

.footer-left a:hover {
  color: #ffffff;
}

.footer-right {
  text-align: right;
}






.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-btn {
  padding: 0.6rem 1.2rem;
  background: #24a595;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.8s ease, transform 0.8s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-btn:hover {
  background: #00ffe1;


}

.online-status {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  margin-left: 1rem;
  color: #0098d8; /* Яблочно-зелёный */
  font-weight: 500;
}

.online-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #13ff00;
  margin-right: 0.5rem;
  margin-top: 0.2rem;
  animation: pulse 1.2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}


.hamburger {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background-color: #000000dd;
    position: absolute;
    top: 60px;
    right: 1rem;
    padding: 1rem;
    border-radius: 10px;
  }

  nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .header-right {
    flex-direction: row-reverse;
  }
}





@media (max-width: 600px) {
  .headline, .grid, .services, .contact-section {
    padding: 1rem;
  }

  .headline h2 {
    font-size: 1.6rem;
  }

  .headline h3 {
    font-size: 1.1rem;
  }

  .grid-item {
    padding: 1.5rem 0.8rem;
  }

  .services h2, .contact-left h2, .contact-right h2 {
    font-size: 1.2rem;
  }

  .contact-container {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .messenger-btn {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}


@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .logo {
    display: none;

}
}


@media (max-width: 600px) {
  .contact-right input,
  .contact-right button {
    width: 100%;
    font-size: 1rem;
  }
}




.grid.tariffs .grid-item {
  cursor: pointer;
  transition: all 0.9s ease;

}

.grid.tariffs .grid-item.active {
  box-shadow: 0 0 15px rgba(41, 151, 255, 0.8);
}

.grid-item.active i {
  animation: pulse-icon 1.4s infinite ease-in-out;
}

@keyframes pulse-icon {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.tariff-description {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: linear-gradient(145deg, #1c2d28, #131513);
  border-radius: 20px;
  color: #d1d1d6;
  box-shadow: 0 8px 18px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.9s ease;
}

.tariff-description h2 {
  font-size: 1.4rem;
  color: #2997ff;
  margin-bottom: 1rem;
}





.grid.tariffs .grid-item h2{
      margin-bottom: 0.5rem;

}


.grid.tariffs .grid-item p {
 font-size: 0.8rem;
 color: #7b7b7b;
}

.grid-item.start i {
  color: #4cd964; /* зелёный */
  margin-bottom: 1.9rem;
}

.grid-item.lite i {
  color: #ff9500; /* оранжевый */
  margin-bottom: 1.9rem;
}

.grid-item.pro i {
  color: #ff3b30; /* красный */
  margin-bottom: 1.9rem;
}

.grid-item.custom i {
  color: #5ac8fa; /* голубой */
  margin-bottom: 1.9rem;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #1c1c1e;
  padding: 2rem;
  max-width: 500px;
  border-radius: 20px;
  color: #f5f5f7;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  animation: fadeIn 0.4s ease;
}

.modal-content h2 {
  margin-bottom: 1rem;
  color: #2997ff;
}

.modal-content p {
  margin-bottom: 1rem;
  line-height: 1.5;
  color: #ccc;
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  color: #888;
}

.modal-close:hover {
  color: #fff;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}



.grid_tariffs {

}





.pulse-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 0.1rem;
  border-radius: 50%;
  animation: pulse-icon 1.4s infinite ease-in-out;
  font-size: 1rem;
}

@keyframes pulse-icon {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulse-start {
  color: #4cd964;   /* зелёный */
}
.pulse-lite {
  color: #ff9500;   /* оранжевый */
}
.pulse-pro {
  color: #ff3b30;   /* красный */
}
.pulse-custom {
  color: #5ac8fa;   /* голубой */
}



.tariff-desc-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.desc-left {
  flex: 1 1 300px;
}

.desc-right {
  flex: 1 1 250px;
  background: rgba(255,255,255,10%);
  border-radius: 10px;
  padding: 1rem;
}

.desc-right ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.desc-right li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.desc-right li i {
  font-size: 1rem;
}

.desc-right .yes {
  color: #2cd466;
}

.desc-right .no {
  color: #ff4f4f;
}



.order-btn:hover {
  background: #30c1ae;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .tariff-desc-container {
    flex-direction: column;
  }
}


/* Секция about и контейнеры внутри */
#about {
  background: linear-gradient(145deg, #1c2d28, #131513);
  border-radius: 20px;
  margin: 4rem auto;
  max-width: 1000px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #f5f5f7;
}

#about h1 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2997ff;
}

#about h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #adadad;
  margin-bottom: 0.8rem;
}

#about p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

#about form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

#about input[type="text"] {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #2997ff;
  border-radius: 10px;
  padding: 0.8rem;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

#about input[type="text"]::placeholder {
  color: #888;
}

#about input[type="text"]:focus {
  border-color: #00ffe1;
}

#about input[type="submit"] {
  background: #24a595;
  color: #000;
  font-weight: bold;
  padding: 0.9rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

#about input[type="submit"]:hover {
  background: #00ffe1;
}

/* Блоки результатов, кнопки */
.procedure_block,
.newsletter {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btnvzlhcks {
  background: #2997ff;
  color: #fff;
  padding: 0.7rem 1.2rem;
  margin-top: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btnvzlhcks:hover {
  background: #00ffe1;
  transform: translateY(-2px);
}

/* Аватар и блок инфы */
#poiskrezphoto {
  max-width: 100px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
  border: 2px solid #353535;
}

.us_inf_block_ert {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #ccc;
}

.stataranq {
  font-weight: 600;
  color: #2cd466;
}

/* Прогресс-бар */
.linebarprog {
  height: 6px;
  background: #2cd466;
  border-radius: 5px;
  transition: width 0.5s ease;
  margin-top: 0.5rem;
}




.wa-checker-modern {
      max-width: 600px;
      margin: 0 auto;
      padding: 1rem 2rem;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.02);
      text-align: center;
      backdrop-filter: blur(6px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .wa-checker-modern h2 {
      margin-bottom: 0.8rem;
      font-size: 1.3rem;
    }

    .wa-checker-modern p {
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
      color: #ccc;
    }

    .wa-checker-modern input {
      width: 50%;
      padding: 0.75rem 1rem;
      font-size: 1rem;
      border-radius: 10px;
      border: 1px solid #2997ff;
      background: transparent;
      color: #fff;
      margin-bottom: 1rem;
    }

    .wa-checker-modern button {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      border-radius: 10px;
      background: linear-gradient(135deg, #24a595, #30c1ae);
      border: none;
      color: #000;
      font-weight: 600;
      cursor: pointer;
    }

    .account-profile {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 2rem 0 1.5rem;
      justify-content: flex-start;
    }

    .avatar-circle {
      width: 60px;
      height: 60px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .avatar-circle i {
      font-size: 53px;
      color: #25d366;
    }

    .account-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .account-number {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }

    .status-check {
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      color: #8affd3;
    }

    .status-dot {
      width: 6px;
      height: 6px;
      margin-right: 0.5rem;
      border-radius: 50%;
      background-color: #00ffae;
      animation: pulse-dot 1.2s infinite ease-in-out;
    }

    @keyframes pulse-dot {
      0% { transform: scale(1); opacity: 0.9; }
      50% { transform: scale(1.6); opacity: 0.4; }
      100% { transform: scale(1); opacity: 0.9; }
    }

    .progress-bar {
      width: 100%;
      height: 6px;
      background: #3a3939;
      border-radius: 5px;
      overflow: hidden;
      margin: 2rem 0 1.2rem;
    }

    .progress-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #00c3ff, #92fe9d, #00c3ff);
      background-size: 300% 100%;
      background-repeat: no-repeat;
      background-position: 0% 0%;
      animation: gradientWave 1.8s ease-in-out infinite, pulseScale 2s ease-in-out infinite;
      transition: width 0.25s ease-out;
      transform-origin: left center;
    }

    @keyframes gradientWave {
      0% { background-position: 0% 0%; }
      100% { background-position: 100% 0%; }
    }

    @keyframes pulseScale {
      0%, 100% { transform: scaleY(1); opacity: 1; }
      50% { transform: scaleY(1.08); opacity: 0.88; }
    }

    .step-card {
      background: linear-gradient(145deg, #131b19, #0f0f0f);
      padding: 1rem;
      border-radius: 10px;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
      gap: 1rem;
      opacity: 0;
      animation: fadeIn 0.6s forwards;
    }

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

    .step-content {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .step-content i {
      font-size: 1.2rem;
      color: #2997ff;
      flex-shrink: 0;
    }

    .step-text {
      display: flex;
      flex-direction: column;
    }

    .step-counter {
      font-size: 0.75rem;
      color: #999;
      white-space: nowrap;
    }

    .order-btn {
      width: max-content;
      padding: 0.6rem 1rem;
      background: #24a595;
      color: #000;
      font-weight: bold;
      border-radius: 10px;
      text-decoration: none;
      transition: 0.3s;
      cursor: pointer;
    }

    .order-btn:hover {
      background: #30c1ae;
    }

    @media (max-width: 480px) {
      .wa-checker-modern { padding: 1.5rem; }
      .avatar-circle { width: 50px; height: 50px; }
      .avatar-circle i { font-size: 40px; }
    }






@media (max-width: 768px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 колонки */
    gap: 6px;
    padding: 8px;
  }

  .grid-item {
    padding: 6px;
    font-size: 12px;
    text-align: center;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .grid-item h2 {
    font-size: 10px;
    margin: 4px 0 0;
  }

  .grid-item i {
    font-size: 16px;
    margin: 0;
  }

  .headline h2,
  .headline h3,
  .headline p,
  .services {
    padding: 0 10px;
    text-align: center;
  }

  header nav a {
    display: block;
    margin: 6px 0;
  }

  .header-btn {
    padding: 6px 20px;
    font-size: 15px;
  }
}


@media (max-width: 768px) {
  .grid-item p {
    display: none;
  }
}


@media (max-width: 768px) {
  .services {
    padding: 10px;
    font-size: 14px;
    line-height: 1.4;
  }

  .services h2 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .services p {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .services ul {
    padding-left: 16px;
    font-size: 13px;
  }

  .services li {
    margin-bottom: 6px;
  }
}


@media (max-width: 768px) {
  .grid-item {
    height: 60px; /* Явно задаём меньшую высоту */
    padding: 4px;
    justify-content: center;
  }

  .grid-item i {
    font-size: 14px;
    margin: 0;
  }

  .grid-item h2 {
    font-size: 10px;
    margin: 2px 0 0;
  }
}


@media (max-width: 768px) {
  .grid {
    margin-left: 12px;
    margin-right: 12px;
  }
}


@media (max-width: 768px) {
  #about {
    margin-left: 10px;
    margin-right: 10px;
  }
}


@media (max-width: 478px) {
.wa-checker-modern input {
    width: 100%;
   }

.wa-checker-modern h2 {
      margin-bottom: 0.8rem;
      font-size: 1.1rem;
    }

        .grid-item h2 {
        font-size: 16px;
        margin: 2px 0 0;
    }

        .grid-item i {
        font-size: 20px;
        margin: 0;
    }

    .grid-item.start i {
    color: #4cd964;
    margin-bottom: 0.9rem;
}

.grid-item.lite i {
    color: #ff9500;
    margin-bottom: 0.9rem;
}

.grid-item.pro i {
    color: #ff3b30;
    margin-bottom: 0.9rem;
}

.grid-item.custom i {
    color: #5ac8fa;
    margin-bottom: 0.9rem;
}


.tariff-description {
    margin: 2rem 1rem;
    padding: 1.3rem;
}

    .services ul {
        padding-left: 10px;
        font-size: 16px;
    }


    .headline h2, .headline h3, .headline p, .services {
        text-align: left;
    }


   .services p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .comment__form__upload {
    margin: 10px;
    }

    #menu {
        display: grid
;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        padding: 8px;
    }

      #menu i {
        margin: 10px;
        font-size: 28px;
      
    }

}
