@charset "UTF-8";
/*
 * Media query mixin
 * Usage example:
 * div {
 *     @include screen('phone') {
 *         // Rules for resolutions above 'phone'
 *     }
 *
 *     @include screen('phone', max) {
 *         // Rules for resolutions below 'phone'
 *     }
 * }
*/
.btn {
  display: inline-block;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.375rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  color: #222;
  background-color: transparent;
}

.btn:hover {
  color: #222;
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background-color: #4099ff;
  border-color: #4099ff;
}

.btn-primary:hover {
  background-color: #3682d9;
  border-color: #337acc;
  color: #fff;
}

.btn-page .btn {
  margin-right: 5px;
  margin-bottom: 5px;
}

/* Make sure buttons are clickable */
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

/* Reset styles */
button, select {
  text-transform: none;
}

input, button, select, optgroup, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}

header {
  width: 100%;
  height: 4rem;
  position: sticky;
  top: 0;
  z-index: 50;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #E2E8F0;
}

.logo-icon {
  background-color: #2563EB;
  padding: 0.5rem;
  border-radius: 0.5rem;
  height: 2.25rem;
}

.logo-builder-svg {
  height: 1.25rem;
  width: 1.25rem;
  display: block;
  vertical-align: middle;
  box-sizing: border-box;
}

.logo-text {
  color: #111827;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.logo-link {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  nav {
    display: none;
  }
}

nav a {
  color: #4B5563;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

nav a:hover {
  color: #2563EB;
}

.main-menu__buttons {
  display: flex;
  margin-left: 1.5rem;
  gap: 0.75rem;
}

.button-try {
  color: #111827;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background-color: #FACC15;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: calc(0.5rem - 2px);
  cursor: pointer;
  height: 2.25rem;
  font-weight: 600;
  border: none;
}
@media only screen and (max-width: 767px) {
  .button-try {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

.button-try:hover {
  background-color: #EAB308;
}

.button-main {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  background-color: #2563EB;
  border-radius: calc(0.5rem - 2px);
  cursor: pointer;
  height: 3rem;
  border: none;
  padding-left: 2rem;
  padding-right: 3rem;
  position: relative;
  margin-top: 1.5rem;
}

.blue {
  color: #2563EB;
}

.yellow {
  color: #EAB308;
}

h1 {
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 700;
  color: #111827;
}

.advantages-list {
  margin-top: 1.5rem;
  display: flex;
  color: green;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.advantages-list span {
  color: #4B5563;
}
.advantages-list svg {
  width: 1rem;
  height: 1rem;
}
.advantages-list .advantages-item {
  display: flex;
  gap: 0.5rem;
}

.features {
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}

.features__container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.features__header {
  text-align: center;
  margin-bottom: 4rem;
}

.features__icon-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.features__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
}

.features__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1e40af;
  background-color: #dbeafe;
  border: 1px solid #bfdbfe;
  border-radius: 9999px;
}

.features__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.features__title-accent {
  color: #2563eb;
}

.features__subtitle {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  color: #4b5563;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .features__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.features {
  padding: 4rem 0;
  background-color: #ffffff;
}

.features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.features__header {
  text-align: center;
  margin-bottom: 4rem;
}

.features__headline {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}

.features__highlight {
  color: #2563eb;
}

.features__subtitle {
  max-width: 800px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 1.125rem;
}

.features__list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature {
  border: 1px solid;
  border-radius: 0.5rem;
  background-color: #f9fafb;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.feature:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature__icon-wrapper {
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.feature__title {
  font-weight: 600;
  font-size: 1.125rem;
  color: #111827;
}

.feature__description {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
}

.feature--blue {
  background-color: #eff6ff;
  border-color: #bfdbfe;
}

.feature--blue .feature__icon-wrapper {
  color: #2563eb;
}

.feature--green {
  background-color: #ecfdf5;
  border-color: #bbf7d0;
}

.feature--green .feature__icon-wrapper {
  color: #16a34a;
}

.feature--yellow {
  background-color: #fefce8;
  border-color: #fde68a;
}

.feature--yellow .feature__icon-wrapper {
  color: #eab308;
}

.revenue {
  padding: 4rem 0;
}

.revenue__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.revenue__header {
  text-align: center;
  margin-bottom: 4rem;
}

.revenue__title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.revenue__highlight--green {
  color: #16a34a;
}

.revenue__highlight--blue {
  color: #2563eb;
}

.revenue__subtitle {
  max-width: 800px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 1.125rem;
}

.revenue__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .revenue__features {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.revenue-feature {
  border: 1px solid;
  border-radius: 0.75rem;
  padding: 1.5rem;
  background-color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.revenue-feature:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.revenue-feature__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.revenue-feature__emoji {
  font-size: 2rem;
}

.revenue-feature__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.revenue-feature__text {
  color: #4b5563;
  font-size: 1.125rem;
}

.revenue-feature--green {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
}

.revenue-feature--blue {
  background-color: #eff6ff;
  border-color: #bfdbfe;
}

.revenue-feature--yellow {
  background-color: #fefce8;
  border-color: #fde68a;
}

.revenue__note {
  margin-top: 3rem;
  text-align: center;
}

.revenue__note-box {
  background-color: #ffffff;
  border: 2px solid #bfdbfe;
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.revenue__note-text {
  font-size: 1.125rem;
  color: #374151;
  font-weight: 500;
}

.revenue__note-highlight {
  color: #2563eb;
  font-weight: 600;
}

.features {
  padding: 4rem 0;
  background-color: #ffffff;
}

.features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.features__header {
  text-align: center;
  margin-bottom: 4rem;
}

.features__title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.features__highlight {
  color: #2563eb;
}

.features__subtitle {
  max-width: 800px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 1.125rem;
}

.features-card {
  border: 1px solid;
  border-radius: 0.75rem;
  padding: 1.5rem;
  background-color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.features-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.features-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.features-card__icon-wrapper {
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-card__icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.features-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}

.features-card__text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Цветовые модификаторы */
.features-card--blue {
  background-color: #eff6ff;
  border-color: #bfdbfe;
}

.features-card--blue .features-card__icon-wrapper {
  color: #2563eb;
}

.features-card--green {
  background-color: #ecfdf5;
  border-color: #bbf7d0;
}

.features-card--green .features-card__icon-wrapper {
  color: #16a34a;
}

.features-card--yellow {
  background-color: #fefce8;
  border-color: #fde68a;
}

.features-card--yellow .features-card__icon-wrapper {
  color: #eab308;
}

.reviews {
  padding: 4rem 0;
  background-color: #ffffff;
}

.reviews__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.reviews__header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews__title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.reviews__highlight {
  color: #16a34a;
}

.reviews__subtitle {
  font-size: 1.125rem;
  color: #4b5563;
}

.reviews__subtitle-accent {
  color: #2563eb;
  font-weight: 600;
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.review {
  border: 2px solid;
  border-radius: 0.75rem;
  background-color: #ffffff;
  padding: 1.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.review:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.review--blue {
  border-color: #bfdbfe;
}

.review--blue:hover {
  border-color: #93c5fd;
}

.review--green {
  border-color: #bbf7d0;
}

.review--green:hover {
  border-color: #86efac;
}

.review--yellow {
  border-color: #fde68a;
}

.review--yellow:hover {
  border-color: #fcd34d;
}

.review__content {
  margin-bottom: 1rem;
}

.review__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.review__author {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.review__position {
  font-size: 0.875rem;
  color: #6b7280;
}

.review__text {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}

/* CSS for .special-offer block (BEM methodology) */
.special-offer {
  position: relative;
  padding: 4rem 1rem;
  background: linear-gradient(to bottom right, #eff6ff, #ecfdf5);
  overflow: hidden;
}

.special-offer__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(191, 219, 254, 0.3), rgba(187, 247, 208, 0.3));
  opacity: 0.2;
  z-index: 0;
}

.special-offer__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
}

.special-offer__header {
  text-align: center;
  margin-bottom: 4rem;
}

.special-offer__title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.special-offer__title-accent {
  color: #2563eb;
}

.special-offer__description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #4b5563;
}

.special-offer__highlight {
  color: #2563eb;
  font-weight: 600;
}

.special-offer__card {
  background: white;
  border: 2px solid #bfdbfe;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  padding: 2rem;
}

.special-offer__gift {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #facc15;
  color: #111827;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
}

.special-offer__card-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .special-offer__card-body {
    grid-template-columns: repeat(2, 1fr);
  }
}
.special-offer__left, .special-offer__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.special-offer__duration {
  text-align: center;
}

.special-offer__months {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
}

.special-offer__text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.special-offer__subtext {
  color: #4b5563;
}

.special-offer__savings {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
}

.special-offer__savings-title {
  font-size: 1.5rem;
  color: #15803d;
  font-weight: 700;
}

.special-offer__savings-amount {
  font-size: 2rem;
  color: #16a34a;
  font-weight: 700;
}

.special-offer__savings-note {
  font-size: 0.875rem;
  color: #15803d;
}

.special-offer__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.special-offer__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-weight: 500;
}

.special-offer__feature::before {
  content: "✔";
  color: #16a34a;
}

.special-offer__price-block {
  background: linear-gradient(to bottom right, #60a5fa, #4ade80);
  color: white;
  text-align: center;
  border-radius: 1rem;
  padding: 1.5rem;
}

.special-offer__price-label {
  font-size: 1rem;
  font-weight: 600;
}

.special-offer__price-old {
  font-size: 1.5rem;
  text-decoration: line-through;
  opacity: 0.75;
}

.special-offer__price-summary {
  font-size: 0.875rem;
  opacity: 0.9;
}

.special-offer__price-now {
  text-align: center;
}

.special-offer__price-now-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.special-offer__price-now-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #16a34a;
}

.special-offer__price-now-text {
  color: #4b5563;
}

.special-offer__countdown {
  background: #eff6ff;
  border: 2px solid #bfdbfe;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
}

.special-offer__countdown-label {
  font-size: 1rem;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.special-offer__countdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.special-offer__countdown-item {
  background: #3b82f6;
  color: white;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.special-offer__countdown-value {
  font-size: 1.125rem;
}

.special-offer__countdown-unit {
  font-size: 0.75rem;
}

.special-offer__button {
  background: #3b82f6;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s;
}

.special-offer__button:hover {
  background: #2563eb;
}

.special-offer__note {
  text-align: center;
  font-size: 0.875rem;
  color: #4b5563;
}

.special-offer__footer {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: #dbeafe;
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 2px solid #bfdbfe;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.special-offer__clock-icon {
  width: 16px;
  height: 16px;
  stroke: #2563eb;
  fill: none;
}

.special-offer__deadline {
  font-size: 0.875rem;
  color: #1e40af;
  font-weight: 500;
}

.stats {
  width: 100%;
  padding: 4rem 0;
  background-color: #2563eb; /* blue-600 */
  color: #fff;
}

.stats__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.stats__list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stats__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.stats__icon {
  width: 2rem;
  height: 2rem;
}

.stats__icon--yellow {
  color: #fcd34d; /* yellow-300 */
}

.stats__icon--green {
  color: #86efac; /* green-300 */
}

.stats__number {
  font-size: 2.25rem;
  font-weight: bold;
}

.stats__label {
  color: #dbeafe; /* text-blue-100 */
  font-weight: 500;
}

.cta {
  width: 100%;
  padding: 4rem 0;
}

.cta__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta__title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}

.cta__title-accent {
  color: #2563eb; /* blue-600 */
}

.cta__text {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #4b5563;
}

.cta__text-accent {
  color: #16a34a;
  font-weight: 500;
}

.cta__form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta__form-row {
  display: flex;
  gap: 0.75rem;
}

.cta__input {
  flex: 1;
  height: 2.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  border: 2px solid #bfdbfe; /* blue-200 */
  background-color: #fff;
  color: #111827;
}

.cta__input:focus {
  border-color: #3b82f6; /* blue-500 */
  outline: none;
  box-shadow: 0 0 0 2px #93c5fd;
}

.cta__button {
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: #facc15;
  color: #1f2937;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 2.5rem;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease;
}

.cta__button:hover {
  background-color: #fbbf24;
}

.cta__note {
  font-size: 0.875rem;
  color: #6b7280;
}

.cta__note-accent {
  color: #16a34a;
  font-weight: 500;
}

.footer {
  padding: 2rem 1rem;
  background-color: #f9fafb; /* bg-gray-50 */
  border-top: 1px solid #e5e7eb; /* border-gray-200 */
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .footer__row {
    flex-direction: row;
  }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo {
  background-color: #2563eb; /* blue-600 */
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.footer__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #ffffff;
}

.footer__brand-name {
  font-weight: 600;
  color: #111827;
}

.footer__copyright {
  font-size: 0.875rem;
  color: #4b5563;
}

.footer__nav {
  display: flex;
  gap: 1.5rem;
}

.footer__link {
  font-size: 0.875rem;
  color: #4b5563;
  transition: color 0.2s;
  text-decoration: none;
}

.footer__link:hover {
  color: #2563eb; /* hover:text-blue-600 */
}

.footer__link--support:hover {
  color: #16a34a; /* hover:text-green-600 */
}

.reasons-list {
  margin-bottom: 1rem;
}
.reasons-list li {
  line-height: 3rem;
}

textarea {
  width: 100%;
}

p, li {
  font-size: 1rem;
  line-height: 1.5rem;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: start;
  padding: 15px;
  color: white;
  align-items: center;
}

.menu-logo img {
  width: 50px;
  margin-right: 5px;
  margin-top: -5px;
}

.menu-logo a {
  font-family: Popins, sans-serif;
  display: flex;
  font-size: 24px;
  font-weight: 600;
  width: 100%;
  margin-right: 20px;
}

.menu-items a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 18px;
}

.menu-items a:hover {
  text-decoration: underline;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p,
.alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

.container {
  width: 100%;
}

.container__inner {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .container__inner {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
}
.container__inner .copyright {
  padding-bottom: 2rem;
  font-size: 1rem;
}

.container-dark {
  background-color: #1D2741;
}

.logo__text-name, .logo__text-numbers {
  font-family: "Varela", sans-serif;
  font-weight: 400;
  color: #01E0C5;
  font-size: 32px;
}

.logo__text-numbers {
  color: #FFFFFF;
}

nav ul {
  list-style: none;
  padding: 0;
  position: relative;
  float: left;
  margin: 15px 0 0;
}
@media only screen and (max-width: 767px) {
  nav ul {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
  }
}

.first-menu__item {
  position: relative;
  float: left;
  margin-right: 2.5rem;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 103px;
}

.first-menu__link {
  display: block;
  text-decoration: none;
}

.first__container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  margin-left: 2rem;
  margin-right: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1169px) {
  .first__container {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .first__container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 374px) {
  .first__container {
    padding: 0 0.5rem;
  }
}

.tooltip {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: #facc15;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.tooltip__content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tooltip__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #111827;
}

.tooltip__text {
  display: flex;
  flex-direction: column;
}

.tooltip__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.tooltip__subtitle {
  font-size: 0.75rem;
  color: #374151;
}

.input-error {
  border: 1px solid red !important;
}

.first__left-column {
  margin-top: 4rem;
}
@media only screen and (max-width: 1169px) {
  .first__left-column {
    margin-right: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .first__left-column {
    margin-top: 0;
  }
}
.first__left-column p {
  font-size: 1.125rem;
  line-height: 1.625;
  color: #4B5563;
  margin-top: 1.5rem;
}

.first__right-column {
  position: relative;
}
.first__right-column img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .first__right-column {
    width: 100%;
  }
}

.first__right-column h2 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  margin-bottom: 20px;
}

.facts__numbers {
  color: #195EFF;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 20px;
  min-width: 90px;
  line-height: 120%;
  margin-right: 1rem;
}

.facts__text {
  color: #1D2741;
  font-size: 14px;
  font-weight: 400;
}

ul li a:hover {
  color: #01E0C5;
}

.first-menu__logo-link {
  text-transform: uppercase;
  text-decoration: none;
}

.facts__container {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .facts__container {
    flex-direction: column;
  }
}

h2 {
  color: #1D2741;
  font-size: 32px;
  font-weight: 700;
}

section h2 {
  padding-top: 3rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  section h2 {
    padding-top: 2rem;
  }
}

.second__items {
  display: flex;
  justify-content: space-around;
}

.second__item {
  width: 370px;
}
@media only screen and (max-width: 1169px) {
  .second__item {
    width: 100%;
  }
}

.third__items {
  display: flex;
  justify-content: space-around;
  margin-bottom: 50px;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .third__items {
    width: 100%;
  }
}
@media only screen and (max-width: 374px) {
  .third__items {
    flex-direction: column;
    gap: 20px;
  }
}

.third__item-header {
  display: flex;
}

.arrow {
  color: #01E0C5;
  width: 1.5rem;
  height: 22px;
  margin-bottom: 15px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.third__container {
  display: flex;
}
@media only screen and (max-width: 1169px) {
  .third__container {
    flex-direction: column;
  }
}

.third__image {
  max-width: 550px;
  border-radius: 1rem;
  margin: 1rem;
}

.third__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 50px;
}

.second .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
}

a {
  text-decoration: none;
  color: inherit;
}

.arrow-right {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 7px;
  height: 13px;
}

.button {
  margin-right: auto;
  margin-left: auto;
  border-radius: 6px;
  width: 160px;
  height: 50px;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.first-menu__icon {
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 6px;
}

.second {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #1D2741;
}
@media only screen and (max-width: 767px) {
  .second {
    margin-bottom: 2rem;
  }
}

.second__text {
  text-align: justify;
  color: #1D2741;
  line-height: 140%;
}

.third {
  background: #F7F9FE;
  color: #1D2741;
  padding-bottom: 100px;
}

.third-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #101010;
  margin-bottom: 20px;
}

ul {
  list-style-type: none;
}

.copyright-item-1 {
  margin-top: 108px;
}

.copyright-item-2, .copyright-item-3, .copyright__item-4 {
  margin-top: 0;
}

.first-menu__logo {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .first-menu__logo {
    width: 100%;
    justify-content: center;
  }
}

.logo__text {
  margin-left: 10px;
  font-weight: 600;
  font-size: 24px;
}

.highlight {
  color: #01E0C5;
}

/* Ползунок выбора срока тарифа */
.pricing-slider {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
  margin-bottom: 20px;
}

.pricing-slider span {
  padding: 5px 10px;
  border-radius: 10px;
}

.pricing-slider .active {
  background: #01E0C5;
  color: white;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #1D2741;
}

.card-header {
  background: #01E0C5;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  border-radius: 10px 10px 0 0;
}

.card-subtitle {
  font-size: 14px;
  color: gray;
  margin: 10px 0;
}

.price {
  font-size: 20px;
  margin: 15px 0;
}

.old-price {
  text-decoration: line-through;
  color: gray;
  font-size: 14px;
}

.new-price {
  font-weight: bold;
  font-size: 22px;
  color: #01E0C5;
}

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

.features li {
  padding: 5px 0;
  font-size: 14px;
}

.modal {
  z-index: 9999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.modal h2 {
  font-size: 24px;
}

.modal-content {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  position: relative;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}

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

.form-group {
  margin-bottom: 1.3rem;
}

.form-label {
  margin-bottom: 0.5rem;
}

label {
  display: inline-block;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.95rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #f6f7fb;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input, button, select, optgroup, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.flex {
  display: flex;
  justify-content: center;
}

/* Responsive starts here */
@media screen and (max-width: 1199px) {
  .second__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .second h2, .third h2, .subtitle, .third__items {
    max-width: 600px;
    margin: 0 auto 30px;
  }
  .first-menu__item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .first-menu {
    flex-direction: column;
    justify-content: center;
  }
  .first-menu__logo, nav, .first-menu__logo {
    margin-left: auto;
    margin-right: auto;
  }
  .first-menu__logo {
    padding-left: unset;
  }
  nav {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .item1 {
    grid-column: 1/span 2;
  }
  .item2 {
    grid-column: 1;
  }
  .item3 {
    grid-column: 2;
  }
  .item4 {
    grid-column: 1/span 2;
    display: flex;
    justify-content: center;
  }
  .second__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .third-item {
    margin-right: 30px;
  }
}
@media screen and (max-width: 575px) {
  .first__text {
    font-size: 16px;
    line-height: 120%;
  }
  .first-text {
    font-size: 16px;
    line-height: normal;
  }
  .second__text {
    margin-top: 30px;
  }
  .third-items__image {
    max-width: 320px;
  }
  .third-item {
    margin-right: unset;
  }
}
