@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #0D101C;
  background: #F8FAFC;
}

.container {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.section__header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 80px;
}

.section__title {
  margin: 0 0 24px;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #0D101C;
}
.section__title--left {
  text-align: left;
}

.section__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.56;
  color: #49579C;
}
.section__subtitle--left {
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn--primary {
  background: #2547F4;
  color: #FFFFFF;
  box-shadow: 0px 8px 10px -6px rgba(37, 71, 244, 0.3), 0px 20px 25px -5px rgba(37, 71, 244, 0.3);
}
.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.btn--secondary {
  background: #FFFFFF;
  color: #0D101C;
  border: 1px solid rgba(37, 71, 244, 0.1);
}
.btn--secondary:hover {
  border-color: rgba(37, 71, 244, 0.2);
  background: rgba(37, 71, 244, 0.02);
}
.btn--outline {
  background: transparent;
  color: #0D101C;
  border: 1px solid rgba(37, 71, 244, 0.2);
}
.btn--outline:hover {
  border-color: #2547F4;
  color: #2547F4;
}
.btn--white {
  background: #FFFFFF;
  color: #2547F4;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.btn--white:hover {
  opacity: 0.95;
}
.btn--outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn--link {
  background: transparent;
  color: #0D101C;
  border: 1px solid rgba(37, 71, 244, 0.2);
  font-weight: 700;
  font-size: 16px;
}
.btn--link:hover {
  border-color: #2547F4;
  color: #2547F4;
}
.btn--lg {
  padding: 16.5px 32px;
  font-size: 18px;
  border-radius: 40px;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #0D101C;
}

.feature-list__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(37, 71, 244, 0.1);
  border-radius: 50%;
  color: #2547F4;
  font-size: 12px;
  flex-shrink: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(37, 71, 244, 0.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.header__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 0 16px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0D101C;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #2547F4;
  color: #FFFFFF;
  border-radius: 12px;
  font-size: 18px;
}

.nav {
  display: flex;
  gap: 32px;
}
@media (max-width: 900px) {
  .nav {
    display: none;
  }
}

.nav__link {
  color: #0D101C;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav__link:hover {
  color: #2547F4;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero {
  position: relative;
  padding: 96px 24px;
}
@media (max-width: 768px) {
  .hero {
    padding: 64px 16px;
  }
}
.hero {
  padding-top: 64px;
  padding-bottom: 96px;
  overflow: hidden;
}

.hero__gradient-blur {
  position: absolute;
  top: 0;
  left: 140px;
  width: 1000px;
  height: 600px;
  background: linear-gradient(149deg, rgb(30, 58, 138) 0%, rgb(124, 58, 237) 50%, rgb(219, 39, 119) 100%);
  filter: blur(120px);
  opacity: 0.1;
  border-radius: 9999px;
  pointer-events: none;
}

.hero__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .hero__inner {
    padding: 0 16px;
  }
}
.hero__inner {
  display: flex;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }
}

.hero__content {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1024px) {
  .hero__content {
    align-items: center;
    max-width: 100%;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(37, 71, 244, 0.1);
  border: 1px solid rgba(37, 71, 244, 0.2);
  border-radius: 9999px;
  color: #2547F4;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.hero__badge-icon {
  font-size: 10px;
}

.hero__title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #0D101C;
}
@media (max-width: 1024px) {
  .hero__title {
    text-align: center;
  }
}

.hero__subtitle {
  margin: 0;
  max-width: 512px;
  font-size: 20px;
  line-height: 1.4;
  color: #49579C;
}
@media (max-width: 1024px) {
  .hero__subtitle {
    text-align: center;
  }
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .hero__buttons {
    justify-content: center;
  }
}

.hero__visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-height: 400px;
}
@media (max-width: 1024px) {
  .hero__visual {
    justify-content: center;
    min-height: 300px;
  }
}

.hero__phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  border-radius: 40px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 8px solid #0f172a;
  overflow: hidden;
  background: #fff;
}
.hero__phone-mockup::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 9999px;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero__phone-mockup::before {
    top: 10px;
    width: 80px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .hero__phone-mockup {
    width: 240px;
    height: 480px;
  }
}

.hero__phone-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding-top: 40px;
}

.crm-section {
  padding: 96px 24px;
}
@media (max-width: 768px) {
  .crm-section {
    padding: 64px 16px;
  }
}
.crm-section .section__header {
  margin-bottom: 80px;
}

.crm-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.crm-screenshot {
  width: 100%;
  max-width: 1000px;
  order: 1;
}

.crm-cards {
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  order: 2;
}

.crm-card {
  flex: 1;
  min-width: 280px;
  max-width: 379px;
  padding: 33px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 56px;
  box-shadow: 0px 20px 50px -12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.crm-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 28px;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.crm-card__icon--blue {
  background: #DBEAFE;
}
.crm-card__icon--purple {
  background: #F3E8FF;
}
.crm-card__icon--pink {
  background: #FCE7F3;
}

.crm-card__title {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #0D101C;
}

.crm-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.43;
  color: #49579C;
}

.crm-screenshot__frame {
  padding: 4px;
  background: #0F172A;
  border: 8px solid #1E293B;
  border-radius: 40px;
}

.crm-screenshot__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.fast-order-section {
  padding: 96px 24px;
}
@media (max-width: 768px) {
  .fast-order-section {
    padding: 64px 16px;
  }
}
.fast-order-section {
  background: rgba(37, 71, 244, 0.05);
}

.fast-order-section__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .fast-order-section__inner {
    padding: 0 16px;
  }
}
.fast-order-section__inner {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: stretch;
  justify-content: stretch;
}
@media (max-width: 1024px) {
  .fast-order-section__inner {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.fast-order-section__visual {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  min-height: 532px;
}
@media (max-width: 1024px) {
  .fast-order-section__visual {
    width: 100%;
    max-width: 532px;
  }
}

.fast-order-section__gradient-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 532px;
  height: 532px;
  background: linear-gradient(135deg, rgb(30, 58, 138) 0%, rgb(124, 58, 237) 50%, rgb(219, 39, 119) 100%);
  filter: blur(80px);
  opacity: 0.2;
  border-radius: 9999px;
}

.fast-order-section__phone-frame {
  position: relative;
  width: 532px;
  height: 532px;
  flex-shrink: 0;
  background: #FFFFFF;
  border: 10px solid #0F172A;
  border-radius: 48px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (max-width: 600px) {
  .fast-order-section__phone-frame {
    width: 100%;
    max-width: 320px;
    height: 400px;
  }
}

.fast-order-section__notification {
  position: absolute;
  top: 133px;
  left: 405px;
  min-width: 191px;
}
@media (max-width: 600px) {
  .fast-order-section__notification {
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
  }
}

.notification-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 40px;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(37, 71, 244, 0.1);
}

.notification-card__check {
  width: 20px;
  height: 20px;
  background: #DCFCE7;
  border-radius: 50%;
  flex-shrink: 0;
}

.notification-card__title {
  margin: 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.33;
  color: #0D101C;
}

.notification-card__subtitle {
  margin: 4px 0 0;
  font-size: 10px;
  line-height: 1.5;
  color: #0D101C;
  opacity: 0.6;
}

.fast-order-section__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 512px;
}
@media (max-width: 1024px) {
  .fast-order-section__content {
    max-width: 100%;
  }
}

.capabilities-section {
  padding: 96px 24px;
}
@media (max-width: 768px) {
  .capabilities-section {
    padding: 64px 16px;
  }
}
.capabilities-section {
  background: #020617;
}

.capabilities-section__header {
  margin-bottom: 64px;
}

.capabilities-section__title {
  margin: 0 0 16px;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.11;
  color: #FFFFFF;
}

.capabilities-section__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #9CA3AF;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

.capability-card {
  padding: 33px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 56px;
}

.capability-card__icon {
  font-size: 24px;
  margin-bottom: 20px;
}

.capability-card__title {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #FFFFFF;
}

.capability-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.43;
  color: #9CA3AF;
}

.marketing-section {
  padding: 96px 24px;
}
@media (max-width: 768px) {
  .marketing-section {
    padding: 64px 16px;
  }
}

.marketing-section__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .marketing-section__inner {
    padding: 0 16px;
  }
}
.marketing-section__inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .marketing-section__inner {
    flex-direction: column;
  }
}

.marketing-section__content {
  flex: 1;
}

.marketing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 600px) {
  .marketing-cards {
    grid-template-columns: 1fr;
  }
}

.marketing-card {
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid rgba(37, 71, 244, 0.05);
  border-radius: 56px;
  box-shadow: 0px 20px 50px -12px rgba(0, 0, 0, 0.1);
}

.marketing-card__icon {
  font-size: 20px;
  margin-bottom: 12px;
}

.marketing-card__title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #0D101C;
}

.marketing-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.43;
  color: #49579C;
}

.loyalty-mockup {
  flex: 1;
  max-width: 486px;
}

.loyalty-mockup__frame {
  position: relative;
  padding: 48px;
  background: linear-gradient(148deg, rgba(37, 71, 244, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border: 1px solid #FFFFFF;
  border-radius: 48px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loyalty-mockup__frame::before {
  content: "";
  position: absolute;
  top: 288px;
  left: 50%;
  transform: translateX(-50%);
  width: 256px;
  height: 256px;
  background: rgba(236, 72, 153, 0.2);
  filter: blur(60px);
  border-radius: 9999px;
  pointer-events: none;
}

.loyalty-mockup__label {
  margin: 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  color: #2547F4;
  align-self: flex-start;
}

.loyalty-mockup__card {
  width: 280px;
  padding: 24px;
  background: #FFFFFF;
  border: 4px solid #1E293B;
  border-radius: 40px;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loyalty-mockup__hint {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33;
  color: #0D101C;
  opacity: 0.6;
  text-align: center;
}

.loyalty-mockup__points {
  margin: 0;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.11;
  text-align: center;
  color: #2547F4;
}

.loyalty-mockup__gain {
  margin: 8px 0 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #22C55E;
}

.loyalty-mockup__rewards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 224px;
}

.loyalty-reward {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(37, 71, 244, 0.05);
  border: 1px solid rgba(37, 71, 244, 0.1);
  border-radius: 28px;
  font-size: 12px;
  line-height: 1.33;
  color: #0D101C;
}

.loyalty-reward span:first-child {
  font-weight: 400;
}

.loyalty-reward span:last-child {
  font-weight: 700;
}

.loyalty-mockup__btn {
  width: 100%;
  margin-top: 0;
  padding: 15.5px 0 16.5px;
  font-size: 12px;
  font-weight: 700;
}

.integrations-section {
  padding: 96px 24px;
}
@media (max-width: 768px) {
  .integrations-section {
    padding: 64px 16px;
  }
}
.integrations-section {
  border-top: 1px solid rgba(37, 71, 244, 0.1);
  display: none; /* временно скрыто */
}

.integrations-section__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .integrations-section__inner {
    padding: 0 16px;
  }
}

.integrations-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .integrations-section__header {
    flex-direction: column;
  }
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.integration-logo {
  aspect-ratio: 1;
  background: rgba(37, 71, 244, 0.05);
  border: 1px solid rgba(37, 71, 244, 0.05);
  border-radius: 40px;
}
.integration-logo--wide {
  grid-column: span 2;
  aspect-ratio: 2;
}

.benefits-section {
  padding: 96px 24px;
}
@media (max-width: 768px) {
  .benefits-section {
    padding: 64px 16px;
  }
}
.benefits-section {
  background: #FFFFFF;
}

.benefits-grid {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  gap: 32px;
}
@media (max-width: 1024px) {
  .benefits-grid {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .benefits-grid {
    flex-direction: column;
  }
}

.benefit-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
@media (max-width: 1024px) {
  .benefit-card {
    flex: 1 1 calc(50% - 16px);
  }
}
@media (max-width: 600px) {
  .benefit-card {
    flex: 1 1 100%;
  }
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  background: #2547F4;
  border-radius: 40px;
  flex-shrink: 0;
}

.benefit-card__title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #0D101C;
}

.benefit-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.43;
  color: #49579C;
}

.cta-section {
  padding: 96px 24px;
  margin: 96px auto 96px;
  position: relative;
  background: linear-gradient(169deg, rgb(30, 58, 138) 0%, rgb(124, 58, 237) 50%, rgb(219, 39, 119) 100%);
  border-radius: 64px;
  box-shadow: 0px 20px 40px -10px rgba(37, 71, 244, 0.3);
  overflow: hidden;
  max-width: 1152px;
  width: calc(100% - 48px);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 64px 16px;
    margin: 64px auto 64px;
    width: calc(100% - 32px);
  }
}

.cta-section__gradient-blur {
  position: absolute;
  top: -128px;
  right: -128px;
  width: 256px;
  height: 256px;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(80px);
  border-radius: 9999px;
  pointer-events: none;
}

.cta-section__overlay {
  position: absolute;
  top: 374px;
  left: -128px;
  width: 256px;
  height: 256px;
  background: rgba(0, 0, 0, 0.1);
  filter: blur(80px);
  border-radius: 9999px;
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 868px;
  margin: 0 auto;
  text-align: center;
}

.cta-section__title {
  margin: 0;
  padding: 0 46px;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1em;
  letter-spacing: -0.025em;
  color: #FFFFFF;
}

.cta-section__subtitle {
  margin: 0;
  padding: 0 27px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #FFFFFF;
  opacity: 0.9;
}

.cta-section__buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn--white {
  padding: 21px 40px;
  font-size: 20px;
  font-weight: 900;
}

.cta-section .btn--outline-white {
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tariffs-section {
  padding: 96px 24px;
}
@media (max-width: 768px) {
  .tariffs-section {
    padding: 64px 16px;
  }
}
.tariffs-section {
  padding-top: 120px;
  background: rgba(37, 71, 244, 0.04);
}

.tariffs-section__title {
  margin: 0 0 16px;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #0D101C;
  text-align: center;
}

.tariffs-section__subtitle {
  margin: 0 0 48px;
  font-size: 18px;
  line-height: 1.5;
  color: #49579C;
  text-align: center;
}

.tariffs-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.tariff-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  padding: 28px 24px;
  background: #FFFFFF;
  border: 1px solid rgba(37, 71, 244, 0.1);
  border-radius: 40px;
  box-shadow: 0px 20px 50px -12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tariff-card--highlight {
  border-color: #2547F4;
  border-width: 2px;
  box-shadow: 0px 8px 10px -6px rgba(37, 71, 244, 0.3), 0px 20px 25px -5px rgba(37, 71, 244, 0.3);
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .tariff-card--highlight {
    transform: none;
  }
}

.tariff-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: #2547F4;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  white-space: nowrap;
}

.tariff-card__name {
  margin: 0 0 12px;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.2;
  color: #0D101C;
}

.tariff-card__price {
  margin: 0 0 20px;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.1;
  color: #2547F4;
}
.tariff-card__price span {
  font-weight: 400;
  font-size: 18px;
  color: #49579C;
}

.tariff-card__features {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.tariff-card__features li {
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.4;
  color: #0D101C;
  border-bottom: 1px solid rgba(37, 71, 244, 0.08);
}
.tariff-card__features li:last-child {
  border-bottom: none;
}

.tariff-card__feature--disabled {
  color: #9CA3AF !important;
}

.tariff-card__btn {
  width: 100%;
  margin-top: auto;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 16, 28, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 48px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.25s;
}
.modal-overlay.is-open .modal {
  transform: scale(1) translateY(0);
}

.modal__header,
.modal__body {
  position: relative;
  z-index: 1;
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.modal__title {
  margin: 0;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.2;
  color: #0D101C;
}

.modal__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: rgba(37, 71, 244, 0.08);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0D101C;
  transition: background 0.2s;
}
.modal__close:hover {
  background: rgba(37, 71, 244, 0.15);
}

.modal__form .form-group {
  margin-bottom: 20px;
}

.modal__form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #0D101C;
}

.modal__form input,
.modal__form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 16px;
  border: 1px solid rgba(37, 71, 244, 0.2);
  border-radius: 12px;
  color: #0D101C;
  background: #FFFFFF;
  transition: border-color 0.2s;
}
.modal__form input::placeholder,
.modal__form textarea::placeholder {
  color: #9CA3AF;
}
.modal__form input:focus,
.modal__form textarea:focus {
  outline: none;
  border-color: #2547F4;
  box-shadow: 0 0 0 3px rgba(37, 71, 244, 0.15);
}

.modal__form textarea {
  min-height: 100px;
  resize: vertical;
}

.modal__form .btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
}

.modal__success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.modal__success.is-visible {
  display: block;
}

.modal__success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.modal__success-title {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 20px;
  color: #0D101C;
}

.modal__success-text {
  margin: 0;
  font-size: 16px;
  color: #49579C;
}

.footer {
  background: #FFFFFF;
  border-top: 1px solid rgba(37, 71, 244, 0.1);
  padding: 48px 24px;
}

.footer__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 0 16px;
  }
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 20px;
  color: #0D101C;
}

.footer__copyright {
  margin: 0;
  font-size: 14px;
  line-height: 1.43;
  color: #0D101C;
  opacity: 0.6;
}

.footer__email {
  font-size: 14px;
  color: #2547F4;
  text-decoration: none;
  opacity: 0.8;
}
.footer__email:hover {
  text-decoration: underline;
  opacity: 1;
}

/*# sourceMappingURL=styles.css.map */
