/* --- Hero Section Styles --- */

.hero {
  padding: 70px 0 50px;
  position: relative;
  min-height: 700px;
  background-image: linear-gradient(270deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.7) 38%, rgba(8, 8, 8, 0.36) 68%, rgba(8, 8, 8, 0.12) 100%), url("../img/offer.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  max-width: 660px;
  margin-left: auto;
}

/* .hero__media {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
} */

.hero__media.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s ease, transform 0.9s ease;
  animation: mediaFloat 6s ease-in-out infinite;
}

.hero__media-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.hero__media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(126, 34, 206, 0.42), transparent 55%);
  pointer-events: none;
}

.hero__media-frame img {
  width: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__content h1,
.hero__content p {
  text-align: left;
  color: var(--text-main);
}

.hero__content .btn {
  align-self: flex-start;
}

@keyframes mediaFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-content {
  flex: 1 1 350px;
  min-width: 300px;
}

.about-image {
  flex: 0 1 500px;
  min-width: 280px;
  display: flex;
  justify-content: flex-end;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
  animation: mediaFloat 6s ease-in-out infinite;
  will-change: transform;
}

/*---- Base -----*/

:root {
  --bg-main: #0d0d0d;
  --bg-card: #1a1a1a;
  --accent: #a855f7;
  --accent-deep: #7e22ce;
  --accent-light: #d8b4fe;
  --text-main: #ffffff;
  --text-muted: #e5e7eb;
  --stroke: rgba(216, 180, 254, 0.18);
  --radius: 18px;
  --shadow: 0 12px 40px rgba(126, 34, 206, 0.25);
}

* {
  box-sizing: border-box;
}

/* html,
body {
  overflow-x: hidden;
} */

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  background: radial-gradient(1200px 700px at 85% -10%, rgba(168, 85, 247, 0.22), transparent 60%),
    radial-gradient(900px 520px at -15% 30%, rgba(126, 34, 206, 0.25), transparent 64%),
    var(--bg-main);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.35s ease;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
  color: var(--text-main);
}

.section-head__brand {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--accent-light);
  text-shadow: 0 0 18px rgba(168, 85, 247, 0.35);
}

.section-head p {
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-main);
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 10px 26px rgba(126, 34, 206, 0.35);
  animation: btnPulse 1.1s ease-in-out infinite;
}

.btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}

@keyframes btnPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 26px rgba(126, 34, 206, 0.35), 0 0 0 0 rgba(255, 255, 255, 0.55);
  }

  70% {
    transform: scale(1.03);
    box-shadow: 0 14px 30px rgba(126, 34, 206, 0.45), 0 0 0 14px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 10px 26px rgba(126, 34, 206, 0.35), 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.btn--small {
  min-height: 42px;
  padding: 8px 18px;
  font-size: 15px;
}

.btn--ghost {
  background: transparent;
  border-color: var(--accent-light);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(168, 85, 247, 0.14);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216, 180, 254, 0.12);
  background: rgba(13, 13, 13, 0.78);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-sticky {
  background: rgba(13, 13, 13, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  width: 200px;
  height: 70px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  font-size: 15px;
  color: var(--text-muted);
}

.site-nav a:hover {
  color: var(--accent-light);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  border-radius: 10px;
  background: rgba(18, 18, 18, 0.84);
  cursor: pointer;
  border: none;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text-main);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  border-top: 1px solid transparent;
  background: rgba(12, 12, 12, 0.98);
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.mobile-menu.is-open {
  max-height: 85vh;
  opacity: 1;
  pointer-events: auto;
  border-top-color: rgba(216, 180, 254, 0.14);
}

.mobile-menu__inner {
  display: grid;
  gap: 16px;
  padding: 16px 0 34px;
}

.mobile-menu__nav {
  display: grid;
  gap: 8px;
}

.mobile-menu__nav a {
  padding: 10px 2px;
  font-weight: 700;
  color: var(--text-main);
  border-bottom: 1px solid rgba(216, 180, 254, 0.12);
}

.mobile-menu__contacts {
  display: grid;
  gap: 10px;
  font-size: 16px;
}

.mobile-menu__contacts a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  color: var(--text-main);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 180, 254, 0.22);
}

.mobile-menu__phone {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.34), rgba(126, 34, 206, 0.28));
  border-color: rgba(216, 180, 254, 0.52);
  box-shadow: 0 8px 20px rgba(126, 34, 206, 0.32);
}

body.no-scroll {
  overflow: hidden;
}

/* Hero */

.hero {
  padding: 125px 0 50px;
  position: relative;
  min-height: 700px;
}




.hero__media.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s ease, transform 0.9s ease;
  animation: mediaFloat 6s ease-in-out infinite;
}

@keyframes mediaFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero__media-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.hero__media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(126, 34, 206, 0.42), transparent 55%);
  pointer-events: none;
}

.hero__media-frame img {
  width: 100%;
  object-fit: cover;
}

.hero__content h1 {
  margin-bottom: 18px;
  color: var(--text-main);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.06;
  font-weight: 800;
}

.hero__content p {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 20px;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.advantage-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: linear-gradient(160deg, rgba(26, 26, 26, 1) 0%, rgba(22, 22, 22, 1) 100%);
}

.advantage-card__num {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  object-fit: contain;
}

.advantage-card h3 {
  margin-bottom: 8px;
  color: var(--text-main);
  font-size: 22px;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--bg-card);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__base {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.04) 0%, rgba(10, 10, 10, 0.96) 90%);
}

.service-card__base h3 {
  margin-bottom: 8px;
  color: var(--text-main);
  font-size: 21px;
}

.service-card__base p {
  font-size: 15px;
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.78) 0%, rgba(6, 6, 6, 0.94) 55%, rgba(3, 3, 3, 0.98) 100%);
  color: var(--text-main);
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-card:hover .service-card__overlay,
.service-card:focus-within .service-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.section-cta {
  margin-top: 34px;
  text-align: center;
}

/* Steps */

.steps {
  position: relative;
}

.steps-head {
  margin-bottom: 42px;
  text-align: center;
}

.steps-head h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.15;
  color: var(--text-main);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  max-width: 1100px;
  counter-reset: steps;
  padding-left: 0;
}

.steps-grid::before {
  content: "";
  position: absolute;
  left: 52px;
  top: 54px;
  bottom: 54px;
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
  box-shadow: inset 0 -3px 4px rgba(0, 0, 0, 0.22);
}

.step-card {
  position: relative;
  margin-left: 130px;
  padding: 24px 26px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: var(--bg-card);
  color: var(--text-main);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.7s ease;
}

.step-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card:nth-child(1) {
  transition-delay: 0.05s;
}

.step-card:nth-child(2) {
  transition-delay: 0.15s;
}

.step-card:nth-child(3) {
  transition-delay: 0.25s;
}

.step-card:nth-child(4) {
  transition-delay: 0.35s;
}

.step-card::before {
  content: counter(steps);
  counter-increment: steps;
  position: absolute;
  top: 50%;
  left: -126px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, var(--accent-light), #b68ef2);
  color: #ffffff;
  font-size: 62px;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: inset 0 4px 6px rgba(255, 255, 255, 0.25), 0 8px 18px rgba(0, 0, 0, 0.28);
}

.step-card::after {
  content: none;
}

.step-card__period {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-light);
  text-align: left;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.step-card img {
  display: none;
}

.step-card h3 {
  margin-bottom: 8px;
  color: var(--text-main);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.02;
  text-align: left;
  text-transform: uppercase;
}

.step-card p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--bg-card);
}

.price-card--featured {
  border-color: rgba(216, 180, 254, 0.44);
  box-shadow: 0 14px 35px rgba(126, 34, 206, 0.3);
}

.price-card h3 {
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 26px;
}

.price-card__desc {
  margin-bottom: 14px;
  color: var(--accent-light);
}

.price-card ul {
  display: grid;
  gap: 8px;
}

li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
}

.price-card__bottom {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  a {
    margin: 0 auto;
  }
}

.price {
  color: var(--text-main);
  font-weight: 800;
  font-size: 34px;
}

.pricing-note {
  margin-top: 16px;
  font-size: 16px;
  color: var(--accent-light);
}

/* Cases */

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--bg-card);
}

.case-card img {
  width: 100%;
  height: 220px;
  margin-bottom: 14px;
  border-radius: 12px;
  object-fit: cover;
}

.case-card h3 {
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 22px;
}

.case-card p+p {
  margin-top: 8px;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: var(--bg-card);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 18px 52px 18px 20px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-light);
  font-size: 26px;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  padding: 0 20px 18px;
  font-size: 16px;
}

/* Footer */

.site-footer {
  padding: 86px 0 26px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.2), rgba(10, 10, 10, 0.9));
  border-top: 1px solid rgba(216, 180, 254, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
}

.footer-form,
.footer-contacts {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--bg-card);
}

.footer-form h2,
.footer-contacts h2 {
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 32px;
}

.footer-form p {
  margin-bottom: 18px;
}

.capture-form {
  display: grid;
  gap: 12px;
}

.capture-form label {
  display: grid;
  gap: 7px;
}

.capture-form span {
  font-size: 15px;
}

.capture-form input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(216, 180, 254, 0.34);
  border-radius: 10px;
  color: var(--text-main);
  background: rgba(10, 10, 10, 0.6);
}

.capture-form input:focus {
  border-color: var(--accent);
}

/* --- Modal Popup Styles --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(135deg, rgba(20, 10, 40, 0.95) 0%, rgba(40, 20, 60, 0.95) 100%);
  border: 1px solid rgba(216, 180, 254, 0.3);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(216, 180, 254, 0.2);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  padding: 0;
}

.modal-close:hover {
  transform: rotate(90deg);
}

.modal-logo {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.modal-logo img {
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0 0 20px rgba(216, 180, 254, 0.3));
}

.modal-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
}

.modal-text {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.modal-btn {
  min-width: 200px;
}

@media (max-width: 768px) {
  .modal-content {
    padding: 40px 25px;
    border-radius: 16px;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-logo {
    height: 60px;
    margin-bottom: 20px;
  }
}


.footer-contacts ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
}

.footer-contacts li {
  display: grid;
  gap: 4px;
}

.footer-contacts span {
  color: var(--accent-light);
}

.footer-contacts a:hover {
  color: var(--accent-light);
}

.copyright {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: rgba(229, 231, 235, 0.74);
}

/* Responsive */

@media screen and (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: inline-block;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__media {
    order: 2;
  }

  .hero__content {
    order: 1;
    margin-top: 40px;
    text-align: center;
  }

  .pricing-grid,
  .cases-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 820px) {
  .section {
    padding: 40px 0;
  }

  .hero__content h1,
  .hero__content p {
    text-align: center;
  }

  .hero {
    min-height: 500px;
    padding-top: 70px;
    background-position: center;
    background-image: linear-gradient(180deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.7) 38%, rgba(8, 8, 8, 0.36) 68%, rgba(8, 8, 8, 0.12) 100%), url("../img/offer-3.webp");
  }

  .about-grid,
  .services-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-head {
    margin-bottom: 28px;
    text-align: center;
  }

  .steps-grid {
    gap: 14px;
    padding-top: 0;
    padding-left: 0;
  }

  .steps-grid::before {
    left: 30px;
    top: 44px;
    bottom: 44px;
    width: 6px;
  }

  .step-card {
    text-align: left;
    margin-left: 76px;
    padding: 18px 16px;
    transform: none;
    transition: opacity 0.45s ease;
    transition-delay: 0s;
  }

  .step-card::before {
    top: 50%;
    left: -74px;
    width: 60px;
    height: 60px;
    font-size: 34px;
    transform: translateY(-50%);
  }

  .step-card::after {
    content: none;
  }

  .step-card h3 {
    font-size: clamp(22px, 5vw, 30px);
    line-height: 1.05;
  }

  .step-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  .step-card.is-visible {
    transform: none;
  }

  .hero__content p {
    font-size: 18px;
  }
}

@media screen and (max-width: 576px) {
  .container {
    width: min(1180px, calc(100% - 24px));
  }

  .site-header__row {
    min-height: 68px;
  }

  .logo img {
    width: 150px;
  }

  .btn {
    width: 100%;
  }

  .hero {
    padding-top: 42px;
  }


  .price-card__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .price {
    font-size: 30px;
  }
}