@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Poppins", "Helvetica Neue", Arial;
  color: #222222;
  background: #f7f8fb;
  line-height: 1.5;
  padding: 3rem;
}

.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
}
.btn--primary {
  background: #6c3dff;
  color: white;
  box-shadow: 0 6px 18px rgba(108, 61, 255, 0.15);
}
.btn--ghost {
  background: transparent;
  color: #6c3dff;
  border: 2px solid transparent;
}
.btn--ghost:hover {
  text-decoration: underline;
}

.card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 2.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(20, 20, 20, 0.03);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.card__text {
  max-width: 620px;
}
.card__text h1 {
  font-size: 1.8rem;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #222222;
}
.card__text p {
  color: #8a8a8a;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.card__decor img {
  width: 220px;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .card {
    flex-direction: column;
    align-items: flex-start;
  }
  .card__decor {
    align-self: flex-end;
  }
  .card__decor img {
    width: 160px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.modal.is-active {
  background: rgba(0, 0, 0, 0.35);
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.modal__content {
  width: 100%;
  max-width: 1000px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
@media (max-width: 900px) {
  .modal__content {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
.modal__left {
  background: linear-gradient(150deg, #6c3dff 0%, #3ab5ff 100%);
  min-height: 420px;
}
.modal__right {
  padding: 2rem;
  position: relative;
}
.modal__right .modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #222222;
}
.modal__right h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.modal__right p {
  color: #8a8a8a;
  margin-bottom: 1.5rem;
}
.modal__right .modal__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 600px) {
  body {
    padding: 1.25rem;
  }
  .card {
    padding: 1.25rem;
  }
  .card__text h1 {
    font-size: 1.25rem;
  }
  .modal.is-active {
    background: rgba(0, 0, 0, 0.35);
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
}/*# sourceMappingURL=style.css.map */