:root {
  /* Базовая палитра из контекста */
  --primary: #6c5ce7;
  --primary-dark: #5a4cb3;
  --secondary: #a29bfe;
  --secondary-dark: #8c83e7;
  --success: #00b894;
  --danger: #ff7675;
  --warning: #fdcb6e;
  --info: #0984e3;

  --bg: #0f1223;
  --text: #e8ebff;
  --muted: #bfc5ff;
  --glass-bg: 24, 28, 56; /* rgb для backdrop */
  --glass: rgba(var(--glass-bg), 0.42);
  --glass-strong: rgba(var(--glass-bg), 0.58);
  --border: rgba(255, 255, 255, 0.12);
  --ring: rgba(108, 92, 231, 0.35);

  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-1: 0 1px 5px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(91, 84, 159, 0.18);
  --shadow-2: 0 3px 12px rgba(0, 0, 0, 0.25), 0 12px 30px rgba(108, 92, 231, 0.25);

  --bg-w: clamp(1600px, 102vw, 2800px);
}

html {
  background-color: rgb(23, 23, 23);
}

/* Фон: легчайшая тонировка, чтобы паттерн просвечивал */
body {
  position: relative;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(to bottom, rgba(108, 92, 231, 0.06) 0%, rgba(162, 155, 254, 0.06) 40%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(to right, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.1) 100%), url("/images/main-bg.png");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%, var(--bg-w) auto;
  background-position: center center, center top, center top, center top;
  will-change: background-position; /* сглаживает */
  pointer-events: none;
  animation: bgParallax 24s ease-in-out infinite;
  transform-origin: center;
}
@keyframes bgParallax {
  0%,
  100% {
    background-position: center center, center right, center left, center top;
  }
  50% {
    background-position: center 2%, center left, center right, center calc(50% + 10px);
  }
}

/* Градиентные «волны» */
.bg-waves::before,
.bg-waves::after {
  content: "";
  position: fixed;
  inset: -20vmax;
  background: radial-gradient(40vmax 40vmax at 20% 10%, rgba(108, 92, 231, 0.15), transparent 60%),
    radial-gradient(50vmax 50vmax at 85% 20%, rgba(162, 155, 254, 0.12), transparent 70%),
    radial-gradient(35vmax 35vmax at 50% 100%, rgba(0, 184, 148, 0.1), transparent 60%);
  filter: blur(40px);
  z-index: -2;
}
.bg-waves::after {
  transform: rotate(3deg);
  opacity: 0.7;
}

/* Контейнер */
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* Навбар */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px) saturate(120%);
  background: linear-gradient(180deg, var(--glass), rgba(20, 23, 45, 0.28));
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid var(--border);
  isolation: isolate;
  contain: paint;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand__logo {
  width: 38px;
  height: 38px;
}
.brand__name {
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 18px;
}
.nav__links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: 0.25s ease;
}
.nav__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.nav__cta {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--ring);
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.25), rgba(162, 155, 254, 0.15));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: 0.25s ease;
  box-shadow: var(--shadow-1);
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}

/* Бургер */
.burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 34px;
}

/* Мобильное меню */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(16, 19, 39, 0.98);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
  overflow: hidden;
}

.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu.open ~ .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--glass), rgba(20, 23, 45, 0.95));
  backdrop-filter: blur(15px) saturate(150%);
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  height: 100%;
}

.mobile-menu__content a {
  padding: 20px 24px;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 80%;
  max-width: 300px;
  text-align: center;
  margin: 8px 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}
.mobile-menu__content a:nth-child(4) {
  margin-bottom: 20px;
}

.mobile-menu__content a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: #fff;
}

.mobile-menu__cta {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary-dark)) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  font-size: 16px;
  padding: 18px 24px !important;
}

/* Hero */
.hero {
  padding: min(10vh, 120px) 0 64px;
}
.hero__grid {
  display: grid;
  gap: 28px;
  align-items: center;
  grid-template-columns: 1.2fr 1fr;
}

.h1 {
  font-size: clamp(28px, 4.6vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 26px;
  letter-spacing: 0.2px;
  text-shadow: 0 6px 30px rgba(108, 92, 231, 0.22);
}
.lead {
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.6;
  margin: 0 0 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 184, 148, 0.16), rgba(162, 155, 254, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e8fff8;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-1);
}
.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cta-row_hero {
  justify-content: flex-start;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.3s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary-dark));
  color: #fff;
  box-shadow: var(--shadow-1);
  border-color: rgba(255, 255, 255, 0.15);
}
.btn--primary:hover {
  color: var(--text);
  box-shadow: 0 0px 26px rgba(108, 92, 231, 0.4);
  filter: brightness(1.1) saturate(1.2);
  transform: translateY(-1.5px);
}
.btn--ghost {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow-1);
}
.btn--ghost:hover {
  background: var(--bg);
  color: var(--muted);
  transform: translateY(-1.5px);
}
.hero__mock {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--glass-strong), rgba(20, 23, 45, 0.36));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  padding: 18px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px) saturate(130%);
}
.mock__inner {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  padding: 16px;
}
.mock__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 10px;
}
.mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(0, 184, 148, 0.15);
}
.mock__text {
  color: #f5f7ff;
  font-weight: 700;
  font-size: 0.9rem;
}
.mock__hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 16px;
}

/* Features */
.section {
  padding: 60px 0;
}
.section__title {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 28px;
  font-weight: 800;
}
.section__lead {
  text-align: center;
  color: var(--muted);
  margin: 0 0 38px;
  font-size: 1.2rem;
  line-height: 160%;
}

.grid-3 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.card {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--glass), rgba(20, 23, 45, 0.3));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  padding: 18px;
  backdrop-filter: blur(12px) saturate(130%);
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(255, 255, 255, 0.22);
}
.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #fff;
  /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
  background-color: var(--primary);
  box-shadow: var(--shadow-1);
  margin-bottom: 12px;
}
.card__title {
  font-weight: 800;
  margin: 6px 0 12px;
  font-size: 24px;
}
.card__text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Steps */
.steps {
  counter-reset: s;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}
.step + .step {
  margin-top: 12px;
}
.step__num {
  counter-increment: s;
  flex: 0 0 40px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary-dark));
  box-shadow: var(--shadow-1);
  font-size: 1.4rem;
  font-weight: 800;
}
.step__title {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 800;
}
.step__text {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0;
}

/* Pricing */
.price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 64px; /* фиксируем высоту блока под старую цену + основную */
  justify-content: flex-end;
}
.pricing {
  margin-top: 12px;
}
.price-card {
  position: relative;
  height: 510px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 40px;
}
.price-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.2px;
  margin: 10px 0 4px;
}
.price {
  font-size: 34px;
  font-weight: 800;
}
.price small {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
}
.old-price {
  display: none;
  color: var(--muted);
  opacity: 0.8;
  text-decoration: line-through;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 16px;
}
.old-price.show {
  display: block;
}
.old-price.show-small {
  display: inline-block;
}
.ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.ul li {
  margin: 8px 0;
}

/* Большой тумблер */
.billing-toggle-lg_wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.billing-toggle-lg_container {
  position: relative;
}

.billing-toggle-lg {
  display: inline-flex;
  margin: 12px auto 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.bt-lg__btn {
  flex: 1 1 50%;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bt-lg__btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary-dark));
  color: #fff;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.25);
}

.bt-lg__btn:not(.active):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.save-badge[hidden] {
  display: none !important;
}

.save-badge,
.discount_price-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 10px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 184, 148, 0.6), rgba(108, 92, 231, 0.5));
}
.discount_price-badge {
  position: absolute;
  top: -14%;
  right: 11%;
  pointer-events: none;
}
/* Company */
.company {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.text-highlight {
  font-size: 16px;
  color: #fff;
}

.company__about {
  padding: 18px;
}
.company__logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: conic-gradient(from 90deg at 50% 50%, var(--secondary), var(--primary), var(--success), var(--secondary));
  box-shadow: var(--shadow-2);
  margin-bottom: 10px;
}
.company__a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}
.company__a:hover {
  border-color: transparent;
}

/* FAQ */
.faq .card {
  padding: 0;
  overflow: hidden;
}
.faq__item {
  border-bottom: 2px solid var(--border);
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__btn {
  width: 100%;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 16px 18px;
  font-size: 1.2rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.faq__btn::after {
  content: "+";
  font-size: 2rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--muted);
}
.faq__btn[aria-expanded="true"]::after {
  content: "×";
  transform: rotate(90deg);
  color: #fff;
}
.faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
}
.faq__content.open {
  padding: 0 18px 16px;
}

/* Footer */
.footer {
  padding: 36px 0;
  margin-top: 36px;
  border-top: 1px solid var(--border);
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}
.footer__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
}
.footer a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}
.footer a:hover {
  border-color: transparent;
}

/* Вход анимацией при скролле */
.reveal {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.05s;
}

/* Мелочи */
.kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.hr {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 18px 0;
}
.center {
  text-align: center;
}

.contact-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}
.glass-card {
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 30px 0;
  /* max-width: 600px; */
  width: 100%;
  color: #fff;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}

.glass-card h2 {
  margin-bottom: 15px;
  font-size: 1.8em;
}
.form-group {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.form-group input,
.form-group textarea {
  width: 74%;
  padding: 16px 15px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1em;
}
.form-group textarea {
  min-height: 160px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ddd;
}
.btn-primary {
  background: var(--primary, #6c5ce7);
  border: none;
  padding: 12px 25px;
  border-radius: 12px;
  font-size: 1em;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.btn-primary:hover {
  background: var(--primary-dark, #5a4cb3);
}
.form-status {
  margin-top: 15px;
  font-size: 0.9em;
}

/* Стили для чекбокса в форме заявки (в стиле сайта) */
.form-consent {
  display: flex;
  justify-content: center;
  padding: 0 8%;
  margin-bottom: 14px;
}
.consent {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: left;
  max-width: 740px;
}
.consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.consent__box {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  display: inline-grid;
  place-items: center;
  transition: all 0.18s ease;
  box-shadow: var(--shadow-1);
  flex-shrink: 0;
}
.consent__box::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(-45deg) scale(0);
  transition: transform 0.18s ease, border-color 0.18s ease;
  box-sizing: content-box;
}
/* чекнутый вид */
.consent input:checked + .consent__box {
  background: linear-gradient(135deg, var(--primary), var(--secondary-dark));
  border-color: rgba(255, 255, 255, 0.14);
}
.consent input:checked + .consent__box::after {
  border-left-color: #fff;
  border-bottom-color: #fff;
  transform: rotate(-45deg) scale(1);
}

/* текст ссылки в согласии */
.consent__text {
  line-height: 1.3;
  color: var(--muted);
}
.consent__link {
  color: var(--muted);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  margin-left: 6px;
  font-weight: 700;
  text-decoration: none;
}
.consent__link:hover {
  color: #fff;
  border-color: transparent;
}

#leadSubmit {
  margin-top: 20px;
  padding: 1rem 4rem;
}

/* Доступность / ошибки */
.form-status.error {
  color: var(--danger);
}
.form-status.success {
  color: var(--success);
}

/* Предотвращение скролла при открытом меню */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

/* Немного выравнивания инпутов на мобильных */
@media (max-width: 560px) {
}

@media (max-width: 1250px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .price-card:nth-child(3) {
    grid-column: 1 / 3;
    margin: 0 auto;
    width: 566px;
  }
}
@media (max-width: 1000px) {
  .company {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 910px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--glass), rgba(20, 23, 45, 0.95));
    backdrop-filter: blur(15px) saturate(150%);
  }
  .burger {
    display: block;
    z-index: 1002;
    position: relative;
    margin-bottom: 4px;
  }

  main {
    margin-top: 40px;
  }

  /* Скрываем обычное меню на мобильных */
  .nav__links {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section__title {
    font-size: 1.8rem;
  }
  .grid-3.pricing {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .price-card {
    width: 44%;
  }
  .price-card:nth-child(3) {
    width: 93.5%;
    justify-content: none;
  }

  .form-group input,
  .form-group textarea {
    width: 88%;
  }
}
@media (max-width: 855px) {
  .price-card {
    width: 42%;
  }
  .price-card:nth-child(3) {
    width: 90.5%;
  }
}
@media (max-width: 770px) {
  .section__title {
    font-size: 1.7rem;
  }
  .price-card,
  .price-card:nth-child(3) {
    width: 70%;
  }
}
@media (max-width: 680px) {
  .price-card,
  .price-card:nth-child(3) {
    width: 86%;
  }
  .form-group input,
  .form-group textarea {
    width: 88%;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .grid-3--features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  html {
    font-size: 14px;
  }
  .section__title {
    font-size: 1.6rem;
  }
  .glass-card {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }
  .price-card,
  .price-card:nth-child(3) {
    width: 96%;
  }
  .form-group input,
  .form-group textarea {
    width: 94%;
  }
  .form-consent {
    padding: 0 4%;
  }
}
@media (max-width: 450px) {
  .glass-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
