
    :root {
      --bg: #f4f8fb;
      --bg-soft: #eaf5f8;
      --card: #ffffff;
      --text: #10212b;
      --muted: #61707b;
      --line: rgba(16, 33, 43, 0.1);
      --accent: #19a9c9;
      --accent-dark: #0e7f9b;
      --accent-soft: rgba(25, 169, 201, 0.12);
      --green: #26b485;
      --yellow: #ffcf66;
      --shadow: 0 22px 60px rgba(19, 65, 84, 0.12);
      --radius-xl: 32px;
      --radius-l: 24px;
      --radius-m: 18px;
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(25, 169, 201, 0.18), transparent 32rem),
        radial-gradient(circle at 85% 12%, rgba(38, 180, 133, 0.12), transparent 28rem),
        var(--bg);
      line-height: 1.5;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      overflow: hidden;
    }

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

    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(244, 248, 251, 0.78);
      border-bottom: 1px solid rgba(16, 33, 43, 0.08);
    }

    .nav-inner {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -0.04em;
      font-size: 22px;
    }

    .brand-logo {
      display: block;
      width: 154px;
      height: auto;
      object-fit: contain;
    }

    .hero-logo-card {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: min(100%, 292px);
      padding: 18px 22px;
      margin-bottom: 22px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(16, 33, 43, 0.08);
      box-shadow: 0 18px 46px rgba(19, 65, 84, 0.08);
    }

    .hero-logo-card img {
      display: block;
      width: 100%;
      height: auto;
    }

    .footer-logo {
      display: block;
      width: 132px;
      height: auto;
      margin-bottom: 10px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 750;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      white-space: nowrap;
    }

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

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      box-shadow: 0 18px 36px rgba(25, 169, 201, 0.28);
    }

    .btn-secondary {
      color: var(--text);
      background: rgba(255, 255, 255, 0.72);
      border-color: rgba(16, 33, 43, 0.1);
    }

    .btn-telegram-channel {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(25, 169, 201, 0.3);
      color: var(--accent-dark);
      font-weight: 600;
    }

    .btn-telegram-channel:hover {
      background: white;
      border-color: var(--accent);
    }

    .hero {
      padding: 86px 0 78px;
      position: relative;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
      gap: 56px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.68);
      border: 1px solid rgba(16, 33, 43, 0.08);
      color: var(--accent-dark);
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 22px;
    }

    .eyebrow-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(38, 180, 133, 0.14);
    }

    h1 {
      font-size: clamp(42px, 6vw, 74px);
      line-height: 0.96;
      letter-spacing: -0.065em;
      margin-bottom: 24px;
    }

    .hero-subtitle {
      max-width: 680px;
      color: var(--muted);
      font-size: 20px;
      line-height: 1.58;
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 34px;
    }

    .hero-notes {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 680px;
    }

    .note {
      padding: 16px;
      background: rgba(255, 255, 255, 0.68);
      border: 1px solid rgba(16, 33, 43, 0.08);
      border-radius: 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .note strong {
      display: block;
      color: var(--text);
      font-size: 18px;
      margin-bottom: 4px;
    }

    .phone-card {
      position: relative;
      background: linear-gradient(160deg, rgba(255,255,255,0.9), rgba(255,255,255,0.58));
      border: 1px solid rgba(255,255,255,0.8);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      padding: 24px;
    }

    .phone-card::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      right: -52px;
      top: -48px;
      background: rgba(25, 169, 201, 0.18);
      filter: blur(2px);
      z-index: -1;
    }

    .chat {
      background: #f7fbfd;
      border-radius: 28px;
      border: 1px solid rgba(16, 33, 43, 0.08);
      overflow: hidden;
    }

    .chat-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 18px 14px;
      background: white;
      border-bottom: 1px solid rgba(16, 33, 43, 0.08);
    }

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

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--accent-soft);
      color: var(--accent-dark);
      font-weight: 900;
    }

    .chat-user strong {
      display: block;
      line-height: 1.1;
    }

    .chat-user span {
      color: var(--green);
      font-size: 13px;
      font-weight: 700;
    }

    .chat-body {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 20px;
    }

    .bubble {
      max-width: 84%;
      padding: 14px 16px;
      border-radius: 18px;
      font-size: 14px;
      box-shadow: 0 10px 24px rgba(16, 33, 43, 0.06);
    }

    .bubble.client {
      align-self: flex-end;
      background: var(--accent);
      color: white;
      border-bottom-right-radius: 6px;
    }

    .bubble.assistant {
      align-self: flex-start;
      background: white;
      color: var(--text);
      border-bottom-left-radius: 6px;
    }

    .status-list {
      display: grid;
      gap: 8px;
      margin: 10px 0 0;
      padding: 0;
      list-style: none;
      color: var(--muted);
    }

    .status-list li {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .check {
      color: var(--green);
      font-weight: 900;
    }

    section {
      padding: 76px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 36px;
    }

    .section-kicker {
      color: var(--accent-dark);
      font-weight: 850;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 12px;
    }

    h2 {
      font-size: clamp(34px, 4.5vw, 54px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      margin-bottom: 16px;
    }

    .section-text {
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
      max-width: 760px;
    }

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

    .card {
      background: rgba(255, 255, 255, 0.74);
      border: 1px solid rgba(16, 33, 43, 0.08);
      border-radius: var(--radius-l);
      padding: 26px;
      box-shadow: 0 16px 36px rgba(19, 65, 84, 0.07);
    }

    .card h3 {
      font-size: 22px;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
    }

    .card p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      background: var(--accent-soft);
      color: var(--accent-dark);
      font-size: 24px;
    }

    .problem {
      background: rgba(255,255,255,0.34);
      border-top: 1px solid rgba(16, 33, 43, 0.06);
      border-bottom: 1px solid rgba(16, 33, 43, 0.06);
    }

    .compare {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .compare-card {
      border-radius: var(--radius-xl);
      padding: 34px;
      min-height: 330px;
    }

    .compare-card.ai {
      background: rgba(255, 255, 255, 0.62);
      border: 1px solid rgba(16, 33, 43, 0.09);
    }

    .compare-card.justwish {
      color: white;
      background:
        radial-gradient(circle at top right, rgba(255,255,255,0.23), transparent 16rem),
        linear-gradient(145deg, #19a9c9, #0e7f9b 56%, #166d76);
      box-shadow: var(--shadow);
    }

    .compare-card h3 {
      font-size: 30px;
      letter-spacing: -0.045em;
      margin-bottom: 18px;
    }

    .compare-card ul {
      padding: 0;
      margin: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .compare-card li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .compare-card.ai li {
      color: var(--muted);
    }

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

    .task-card {
      position: relative;
      min-height: 240px;
      padding: 24px;
      overflow: hidden;
    }

    .task-card::after {
      content: "";
      position: absolute;
      width: 108px;
      height: 108px;
      right: -34px;
      bottom: -34px;
      border-radius: 50%;
      background: var(--accent-soft);
    }

    .tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent-dark);
      font-weight: 800;
      font-size: 12px;
      margin-bottom: 18px;
    }

    .result-line {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(16, 33, 43, 0.08);
      color: var(--text);
      font-weight: 750;
    }

    .steps {
      counter-reset: step;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .step {
      position: relative;
      padding: 26px 22px;
      background: white;
      border-radius: var(--radius-l);
      border: 1px solid rgba(16, 33, 43, 0.08);
      box-shadow: 0 16px 36px rgba(19, 65, 84, 0.06);
    }

    .step::before {
      counter-increment: step;
      content: counter(step);
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: var(--text);
      color: white;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .pricing {
      background: linear-gradient(180deg, rgba(234,245,248,0.5), rgba(255,255,255,0.28));
    }

    .price-card {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
      background: white;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(16, 33, 43, 0.08);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .price-left {
      padding: 40px;
      background:
        radial-gradient(circle at top right, rgba(255,255,255,0.24), transparent 18rem),
        linear-gradient(150deg, #10212b, #12485c);
      color: white;
    }

    .price {
      font-size: clamp(46px, 7vw, 74px);
      line-height: 0.95;
      font-weight: 900;
      letter-spacing: -0.06em;
      margin: 14px 0 8px;
    }

    .price span {
      font-size: 22px;
      letter-spacing: -0.03em;
      opacity: 0.78;
    }

    .price-right {
      padding: 40px;
    }

    .feature-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 14px;
    }

    .feature-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--muted);
    }

    .feature-list strong {
      color: var(--text);
    }

    .notice {
      margin-top: 22px;
      padding: 18px;
      border-radius: 18px;
      background: #fff7df;
      border: 1px solid rgba(255, 207, 102, 0.48);
      color: #67501d;
    }

    .trust-row {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 18px;
      align-items: stretch;
    }

    .limits {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .limit-item {
      padding: 16px;
      border-radius: 16px;
      background: rgba(16, 33, 43, 0.04);
      color: var(--muted);
    }

    .final-cta {
      padding: 92px 0;
    }

    .cta-box {
      position: relative;
      overflow: hidden;
      border-radius: 38px;
      padding: 52px;
      color: white;
      background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.28), transparent 18rem),
        linear-gradient(140deg, #19a9c9, #0e7f9b 58%, #10212b);
      box-shadow: var(--shadow);
    }

    .cta-box h2 {
      max-width: 820px;
      margin-bottom: 18px;
    }

    .cta-box p {
      color: rgba(255,255,255,0.82);
      font-size: 18px;
      max-width: 700px;
      margin-bottom: 28px;
    }

    .cta-box .btn-primary {
      background: white;
      color: var(--accent-dark);
      box-shadow: 0 18px 36px rgba(0,0,0,0.16);
    }

    .footer {
      padding: 30px 0 44px;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid rgba(16, 33, 43, 0.08);
      padding-top: 22px;
      flex-wrap: wrap;
    }

    .footer-column {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-contacts {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-contacts a:hover {
      color: var(--accent-dark);
    }

    @media (max-width: 980px) {
      .hero-grid,
      .price-card,
      .trust-row,
      .compare {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 54px;
      }

      .nav-links {
        display: none;
      }

      .hero-notes,
      .grid-3,
      .tasks-grid,
      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .nav-inner {
        height: 68px;
      }

      .brand {
        font-size: 20px;
      }

      .nav .btn {
        min-height: 44px;
        padding: 0 14px;
        font-size: 13px;
      }

      .hero-grid {
        gap: 34px;
      }

      .hero-subtitle,
      .section-text {
        font-size: 16px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .hero-notes,
      .grid-3,
      .tasks-grid,
      .steps {
        grid-template-columns: 1fr;
      }

      section {
        padding: 54px 0;
      }

      .card,
      .compare-card,
      .price-left,
      .price-right,
      .cta-box {
        padding: 24px;
      }

      .phone-card {
        padding: 14px;
        border-radius: 24px;
      }

      .bubble {
        max-width: 92%;
      }

      .footer-inner {
        flex-direction: column;
        gap: 28px;
      }
    }
    /*ъ АНИМАЦИИ */


.card, .task-card, .step, .compare-card, .price-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}


.card:nth-child(1) { animation-delay: 0.05s; }
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.15s; }
.card:nth-child(4) { animation-delay: 0.2s; }
.card:nth-child(5) { animation-delay: 0.25s; }
.card:nth-child(6) { animation-delay: 0.3s; }

.task-card:nth-child(1) { animation-delay: 0.05s; }
.task-card:nth-child(2) { animation-delay: 0.1s; }
.task-card:nth-child(3) { animation-delay: 0.15s; }
.task-card:nth-child(4) { animation-delay: 0.2s; }
.task-card:nth-child(5) { animation-delay: 0.25s; }
.task-card:nth-child(6) { animation-delay: 0.3s; }

.step:nth-child(1) { animation-delay: 0.05s; }
.step:nth-child(2) { animation-delay: 0.1s; }
.step:nth-child(3) { animation-delay: 0.15s; }
.step:nth-child(4) { animation-delay: 0.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.card, .task-card, .step {
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.card:hover, .task-card:hover, .step:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(19, 65, 84, 0.15);
    background: rgba(255, 255, 255, 0.9);
}


.card:hover .icon, .task-card:hover .icon, .step:hover .icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.25s ease;
}


.card .btn, .task-card .btn {
    transition: all 0.25s ease;
}

.card:hover .btn, .task-card:hover .btn {
    transform: scale(1.02);
}

.tag {
    transition: all 0.2s ease;
}

.card:hover .tag, .task-card:hover .tag {
    background: var(--accent);
    color: white;
}


.result-line {
    transition: all 0.2s ease;
}

.card:hover .result-line, .task-card:hover .result-line {
    border-top-color: var(--accent);
    color: var(--accent-dark);
}

.card, .task-card, .step, .compare-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}


.compare-card {
    transition: all 0.3s ease;
}

.compare-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(19, 65, 84, 0.2);
}

.compare-card.justwish:hover {
    background: linear-gradient(145deg, #1ab3d4, #0f8aa8 56%, #1a7882);
}


.price-card {
    transition: all 0.35s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 55px rgba(19, 65, 84, 0.18);
}

.feature-list li {
    transition: all 0.2s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list li:hover .check {
    transform: scale(1.2);
    display: inline-block;
}

.card, .task-card {
    position: relative;
    overflow: hidden;
}

.card::after, .task-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(25, 169, 201, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.card:active::after, .task-card:active::after {
    width: 200%;
    height: 200%;
}


@media (max-width: 640px) {
    .card:hover, .task-card:hover, .step:hover {
        transform: translateY(-3px);
    }
    
    .card, .task-card, .step {
        animation: fadeInUp 0.4s ease-out forwards;
    }
}
