@import "../assets/font/stylesheet.css";


    :root {
      --bg: #ffffff;
      --text: #16141f;
      --muted: #6f6a7d;
      --line: #ece7f4;
      --panel: #faf8fd;
      --hero-1: #dbc7ff;
      --hero-2: #f2dcff;
      --hero-3: #f3e6ff;
      --primary: linear-gradient(90deg, #d58cff 0%, #8f63ff 100%);
      --primary-solid: #9a6cff;
      --shadow: 0 18px 60px rgba(155, 114, 255, 0.12);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 18px;
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--bg);
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(236, 231, 244, 0.7);
    }

    .header-row {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 18px;
    }

    .brand img {
      width: 34px;
      height: 34px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 34px;
      color: #5e596c;
      font-size: 14px;
      font-weight: 500;
    }

    .nav a:hover { color: var(--text); }

    .btn {
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      transition: transform .2s ease, opacity .2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      min-height: 44px;
      padding: 0 22px;
      color: #fff;
      background: var(--primary);
      font-size: 14px;
      font-weight: 700;
      box-shadow: 0 10px 24px rgba(158, 113, 255, 0.22);
    }

    .menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 14px;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 24px;
  height: 3px;
  background: #4b26c9;
  border-radius: 999px;
  display: block;
  position: relative;
  content: "";
}

.menu-toggle span::before { top: -7px; position: absolute; }
.menu-toggle span::after { top: 7px; position: absolute; }

.mobile-menu {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  height: 60vh; 

  z-index: 999;
  background: #ffffff;

  transform: translateY(-100%);
  transition: transform 0.3s ease;

  overflow-y: auto;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-inner {
  position: relative;
  min-height: 100%;
  padding: 18px 16px 0;
  display: flex;
  flex-direction: column;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.mobile-brand img {
  width: 40px;
  height: 40px;
}

.mobile-close {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.mobile-close span,
.mobile-close span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: #4b26c9;
  transform-origin: center;
}

.mobile-close span {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 28px;
}

.mobile-menu-nav a {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  color: #15141f;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.mobile-download {
  width: 100%;
  min-height: 48px;
  font-size: 16px;
}

.mobile-support {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  border: 1.5px solid #c8b3ff;
  color: #4b26c9;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
}

.mobile-menu-preview {
  position: relative;
  margin-top: auto;
  height: 370px;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(253.43deg, #B5AEFF 0%, #F0DDFF 100%);
}

.mobile-preview-lines {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 140%;
  max-width: none;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.9;
}

.mobile-preview-phone {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 255px;
  z-index: 2;
}

.mobile-preview-card {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  min-width: 240px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(232,190,255,0.96), rgba(190,153,255,0.98));
  box-shadow: 0 16px 36px rgba(151, 93, 255, 0.22);
  color: #231936;
  font-size: 14px;
  font-weight: 600;
  z-index: 3;
  text-align: center;
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 781px) {
  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 780px) {
  .nav,
  .header-download {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
    .hero {
      padding: 22px 0 52px;
    }

    .hero-shell {
      position: relative;
      overflow: hidden;
      border-radius: 30px;

      background: linear-gradient(253.43deg, #B5AEFF 0%, #F0DDFF 100%);

      min-height: 720px;
      padding: 55px 32px 0;
      box-shadow: var(--shadow);
    }

    .hero-shell::before,
    .hero-shell::after {
      content: "";
      position: absolute;
      inset: auto -10% 0 -10%;
      height: 44%;
      background-repeat: no-repeat;
      background-size: cover;
      pointer-events: none;
    }

    .hero-shell::before {
      background-image:
        radial-gradient(120% 90% at 0% 100%, rgba(214, 127, 255, 0.18) 0%, transparent 38%),
        radial-gradient(100% 80% at 100% 100%, rgba(206, 99, 255, 0.16) 0%, transparent 32%);
      opacity: .9;
    }


    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .hero-title {
      margin: 0;
      font-size: clamp(34px, 6vw, 52px);
      line-height: 1.08;
      letter-spacing: -0.03em;
      font-weight: 800;
    }

    .hero-text {
      max-width: 560px;
      margin: 18px auto 22px;
      font-size: 16px;
      line-height: 1.65;
      color: #5a536a;
    }

    .hero-phone-wrap {
      position: relative;
      z-index: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      margin-top: 22px;
    }

    .hero-bg-lines {
      position: absolute;
      bottom: 0;
      width: 106%;
      max-width: none;
      z-index: 1;
      opacity: 0.9;
    }    

    .hero-phone {
      width: min(360px, 82vw);
      filter: drop-shadow(0 14px 40px rgba(77, 43, 138, 0.18));
      z-index: 2;
    }

    .hero-card {
      position: absolute;
      left: 50%;
      bottom: 72px;
      transform: translateX(-50%);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 198px;
      padding: 12px 18px;
      border-radius: 18px;
      background: linear-gradient(90deg, rgba(232,190,255,0.94), rgba(190,153,255,0.96));
      color: #2c213c;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 16px 36px rgba(151, 93, 255, 0.22);
      z-index: 3;
    }
    
    .hero-phone-wrap,
    .hero-phone {
      overflow: visible;
    }


    .section {
      padding: 84px 84px;
    }

    .section-head {
      text-align: center;
      margin-bottom: 42px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.15;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .section-text {
      margin: 12px auto 0;
      max-width: 620px;
      color: var(--muted);
      line-height: 1.7;
      font-size: 15px;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .benefit {
      text-align: center;
      padding: 8px 12px;
    }

    .benefit-icon {
      width: 58px;
      height: 58px;
      margin: 0 auto 14px;
    }

    .benefit-title {
      margin: 0;
      font-size: 14px;
      font-weight: 500;
      color: #5b5568;
      line-height: 1.5;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .feature-card {
      min-height: 238px;
      border-radius: 24px;
      background: #fbf9fd;
      border: 1px solid #f1ebf7;
      overflow: hidden;
      display: grid;
      grid-template-columns: 180px 1fr;
      align-items: center;
      padding: 18px 22px 0;
      gap: 18px;
    }

    .feature-card img {
      width: 100%;
      max-width: 165px;
      margin: 0 auto;
    }

    .feature-title {
      margin: 0 0 8px;
      font-size: 22px;
      line-height: 1.2;
      font-weight: 700;
      text-align: center;
    }

    .feature-text {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
      max-width: 280px;
      text-align: center;
    }

    .reviews-top {
      text-align: center;
      margin-bottom: 26px;
    }

    .reviews-badge {
      display: inline-grid;
      gap: 6px;
      justify-items: center;
      margin-top: 16px;
    }

    .reviews-badge img:first-child { width: 160px; }
    .reviews-badge img:last-child { width: 94px; }

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

    .review-card {
      position: relative;
      min-height: 200px;
      border-radius: 20px;
      background: #fbf8fe;
      border: 1px solid #f0e9f7;
      padding: 22px 22px 18px;
    }

    .review-stars {
      width: 86px;
      margin-bottom: 14px;
    }

    .review-text {
      margin: 0 0 18px;
      font-size: 14px;
      line-height: 1.7;
      color: #5e586c;
      min-height: 96px;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 600;
      color: #2c2738;
    }

    .review-author img {
      width: 24px;
      height: 24px;
      border-radius: 999px;
    }

    .quote-mark {
      position: absolute;
      top: 18px;
      right: 20px;
      width: 22px;
      opacity: .65;
    }

    .contact {
      padding-top: 76px;
    }

    .contact-form {
      width: min(560px, 100%);
      margin: 24px auto 0;
    }

    .field {
      width: 100%;
      min-height: 52px;
      padding: 0 16px;
      border-radius: 14px;
      border: 1px solid #e7e2ee;
      background: #fff;
      color: var(--text);
      margin-bottom: 12px;
    }

    textarea.field {
      min-height: 130px;
      padding: 14px 16px;
      resize: vertical;
    }

    .field::placeholder { color: #a39aae; }

    .contact-submit {
      min-width: 156px;
      margin: 10px auto 0;
      display: flex;
    }

.site-footer {
  margin-top: 80px;
  background: #05070f;
  color: rgba(255,255,255,0.9);
  padding: 40px 0;
}

.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 14px;
}

.footer-nav a {
  color: rgba(255,255,255,0.85);
  transition: 0.2s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

    @media (max-width: 1024px) {
      .benefits-grid { grid-template-columns: repeat(2, 1fr); }
      .features-grid, .reviews-grid { grid-template-columns: 1fr; }
      .feature-card { grid-template-columns: 160px 1fr; }
      .hero-shell { min-height: 660px; }
    }

    @media (max-width: 780px) {
      .nav, .header-download { display: none; }
      .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
      .hero { padding-top: 16px; }
      .hero-shell {
        min-height: auto;
        padding: 28px 18px 0;
      }
      .hero-text { font-size: 15px; }
      .hero-card {
        position: static;
        transform: none;
        margin: 10px auto 0;
      }
      .hero-phone-wrap {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
      }
      .benefits-grid { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
      .feature-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 18px;
      }
      .feature-text { max-width: none; }
      .footer-row {
        grid-template-columns: 1fr;
        padding: 28px 0;
      }
      .footer-nav { flex-wrap: wrap; gap: 16px 24px; }
    }

    @media (max-width: 560px) {
      .header-row { min-height: 70px; }
      .brand span { font-size: 17px; }
      .hero-title { font-size: 34px; }
      .section { padding: 64px 0; }
      .section-title { font-size: 30px; }
      .benefits-grid { grid-template-columns: 1fr; }
      .feature-title { font-size: 20px; }
      .review-card { min-height: auto; }
      .review-text { min-height: auto; }
      .site-footer { margin-top: 70px; }
    }
    
    .modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 320px;
  width: 90%;
}

.modal-content h3 {
  margin-bottom: 10px;
}

.modal-content p {
  margin-bottom: 20px;
  color: #666;
}


@media (max-width: 780px) {
  .feature-card {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .feature-card img {
    order: 1;
  }

  .feature-card div {
    order: 2;
  }
}
