

/* Start:/chat-bot-v-max-dlya-bul/style.css?178179094716640*/
:root {
    --orange: #ff8a00;
    --orange-dark: #e67600;
    --navy: #061b3a;
    --text: #1b2a41;
    --muted: #667085;
    --line: #e5eaf2;
    --bg: #f6f8fb;
    --white: #ffffff;
    --radius: 18px;
    --shadow: 0 16px 40px rgba(15, 35, 75, 0.08);
    --max-purple: #6b4eff;
    --max-purple-dark: #5538e0;
    --max-bg: #f3f0ff;
    --tg-green: #8ecf8e;
    --tg-green-btn: #5bb566;
    --tg-green-btn-hover: #4da858;
    --tg-bg: #a6d8a8;
    --tg-header: #ffffff;
  }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
}
.btn-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 138, 0, 0.25);
}

.btn-light {
    background: #fff;
    color: var(--navy);
    border-color: var(--line);
}

.hero .container,
.section .container {
    width: 100%;
    max-width: 1180px;
}
.hero {
    background:
      radial-gradient(circle at 15% 20%, rgba(107, 78, 255, 0.07), transparent 35%),
      radial-gradient(circle at 85% 10%, rgba(255, 138, 0, 0.08), transparent 30%),
      linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    padding: 40px 0 64px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(auto, 560px) auto;
    justify-content: center;
    gap: 64px;
    align-items: center;
  }

  .hero h1 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 36px;
    line-height: 1.22;
    letter-spacing: -0.3px;
    font-weight: 700;
  }

  .hero-lead {
    margin: 0 0 12px;
    color: #334155;
    font-size: 18px;
    line-height: 1.5;
  }

  .hero-lead:last-of-type {
    margin-bottom: 24px;
  }

  .hero-points {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
  }

  .hero-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(15, 35, 75, 0.04);
  }

  .hero-point strong {
    display: block;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 16px;
  }

  .hero-point p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-point p + p {
    margin-top: 8px;
  }

  .hero-point-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(107, 78, 255, 0.12);
    color: var(--max-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 16px;
    text-align: center;
  }

  /* PHONE */

  .phone-wrap {
    display: flex;
    justify-content: center;
    padding: 0;
  }

  .phone {
    width: 320px;
    background: #111;
    border-radius: 38px;
    padding: 12px;
    box-shadow:
      0 30px 60px rgba(15, 35, 75, 0.22),
      inset 0 0 0 2px #2a2a2a;
    position: relative;
  }

  .phone-notch {
    width: 110px;
    height: 26px;
    background: #111;
    border-radius: 0 0 16px 16px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }

  .phone-screen {
    background: var(--tg-bg);
    border-radius: 28px;
    overflow: hidden;
    height: 640px;
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  }

  .tg-header {
    background: var(--tg-header);
    padding: 38px 10px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }

  .tg-back {
    color: #2a8ee6;
    font-size: 22px;
    line-height: 1;
    padding: 0 4px;
    flex-shrink: 0;
  }

  .tg-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
  }

  .tg-header-info {
    flex: 1;
    min-width: 0;
  }

  .tg-header-info strong {
    display: block;
    font-size: 14px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tg-header-info span {
    font-size: 13px;
    color: #8e8e93;
  }

  .tg-header-actions {
    display: flex;
    gap: 14px;
    color: #2a8ee6;
    font-size: 18px;
    flex-shrink: 0;
    padding-right: 4px;
  }

  .tg-chat {
    flex: 1;
    overflow-y: auto;
    padding: 10px 8px 12px;
    background-color: var(--tg-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%2379b87b' stroke-width='1.1' opacity='0.35'%3E%3Cpath d='M18 28c6-8 14-8 20 0s-2 16-10 16-14-8-10-16z'/%3E%3Cpath d='M72 18c5-6 12-6 16 0s-1 12-8 12-13-6-8-12z'/%3E%3Cpath d='M42 72c7-9 16-9 22 0s-2 18-11 18-18-9-11-18z'/%3E%3Ccircle cx='92' cy='78' r='4'/%3E%3Cpath d='M8 82c4 0 6 3 6 6'/%3E%3C/g%3E%3C/svg%3E");
    scroll-behavior: smooth;
  }

  @keyframes msgIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .tg-service {
    text-align: center;
    margin: 8px auto 12px;
    max-width: 90%;
    background: rgba(255, 255, 255, 0.55);
    color: #5d6b63;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 999px;
  }

  .tg-msg {
    max-width: 92%;
    margin-bottom: 4px;
    animation: msgIn 0.3s ease;
  }

  .tg-msg--bot {
    margin-right: auto;
  }

  .tg-bubble {
    background: #fff;
    border-radius: 12px 12px 12px 4px;
    padding: 8px 10px 6px;
    font-size: 13px;
    line-height: 1.42;
    color: #000;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
    word-break: break-word;
  }

  .tg-bubble b { font-weight: 700; }
  .tg-bubble i { font-style: italic; }
  .tg-bubble u { text-decoration: underline; }
  .tg-bubble s { text-decoration: line-through; }
  .tg-bubble code {
    font-family: Consolas, monospace;
    font-size: 12px;
    background: #f2f2f2;
    padding: 1px 4px;
    border-radius: 4px;
  }
  .tg-bubble .quote {
    border-left: 3px solid var(--tg-green-btn);
    padding-left: 8px;
    color: #444;
    margin: 4px 0;
  }
  .tg-bubble .red { color: #e53935; }
  .tg-bubble .link { color: var(--tg-green-btn); }
  .tg-bubble hr {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 8px 0;
  }

  .tg-time {
    float: right;
    font-size: 11px;
    color: #9aa0a6;
    margin: 6px 0 0 8px;
    line-height: 1;
  }

  .tg-keyboard {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 100%;
  }

  .tg-keyboard--sticky {
    position: sticky;
    bottom: 0;
    padding-top: 4px;
  }

  .tg-btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    background: var(--tg-green-btn);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 10px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
    transition: background 0.15s;
  }

  .tg-btn:hover {
    background: var(--tg-green-btn-hover);
  }

  .tg-btn:active {
    transform: scale(0.99);
  }

  .tg-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px 12px;
    background: #f0f0f0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
  }

  .tg-input-field {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    min-height: 36px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    color: #9aa0a6;
    font-size: 14px;
  }

  .tg-input-icon {
    font-size: 18px;
    color: #9aa0a6;
    flex-shrink: 0;
  }

  .phone-hint {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted);
  }

  /* SECTIONS */

  .section {
    padding: 72px 0;
  }

  .section-light {
    background: var(--bg);
  }

  .section-title {
    font-size: 38px;
    line-height: 1.15;
    color: var(--navy);
    text-align: center;
    margin: 0 0 16px;
  }

  .section-subtitle {
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .steps-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .steps-row {
    display: grid;
    gap: 20px;
    align-items: stretch;
  }

  .steps-row-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-row-2 {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
  }

  .steps-row-2 .step-card:first-child {
    grid-column: 2 / 4;
  }

  .steps-row-2 .step-card:last-child {
    grid-column: 4 / 6;
  }

  .step-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-width: 0;
    height: 100%;
  }

  .step-card-image {
    width: 100%;
    height: 440px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
  }

  .step-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    transform: scale(1.20);
  }

  .step-card-image--zoom img {
    transform: scale(1.23);
  }

  .step-card-image--fill img {
    object-fit: cover;
    transform: none;
  }

  .step-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px 18px 20px;
    border-top: 1px solid #eef2f7;
  }

  .step-card-label {
    margin-bottom: 10px;
  }

  .step-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 10px;
    background: rgba(255, 138, 0, 0.12);
    color: var(--orange);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .step-card-body p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
    min-height: 3em;
  }

  .step-card-body p + p {
    margin-top: 10px;
    min-height: 0;
  }

  .section-light .section-title {
    margin-bottom: 32px;
  }

  /* REQUIREMENTS */

  .req-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 920px;
    margin: 0 auto;
  }

  .req-card {
    display: flex;
    align-items: center;
    gap: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 28px 20px 20px;
    box-shadow: var(--shadow);
  }

  .req-card-image {
    flex: 0 0 150px;
    height: 120px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .req-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .req-card-image-placeholder {
    padding: 10px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
  }

  .req-card-body {
    flex: 1;
    min-width: 0;
  }

  .req-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
  }

  .req-card-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 138, 0, 0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
  }

  .req-card-head h3 {
    margin: 0;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.25;
  }

  .req-card-body p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
  }

  .req-card-body p + p {
    margin-top: 10px;
  }

  .req-card-list {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
  }

  .req-card-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
  }

  .req-card-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
  }

  .product-kb-row {
    margin: 28px auto 0;
    max-width: 920px;
  }

  .product-kb-link {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: #24324c;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
  }

  .product-kb-link:hover {
    color: var(--orange);
    border-bottom-color: rgba(255, 138, 0, 0.35);
  }

  .product-kb-link__ico {
    width: auto;
    height: 32px;
    object-fit: contain;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 0;
  }

  .product-kb-link__text strong {
    font-weight: 800;
    color: var(--navy);
  }

  .product-kb-link:hover .product-kb-link__text strong {
    color: var(--orange);
  }

  .cta {
    background: linear-gradient(135deg, #081b36 0%, #122f55 100%);
    color: #fff;
    padding: 56px 0;
  }

  .cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .cta h2 {
    margin: 0 0 10px;
    font-size: 32px;
  }

  .cta p {
    margin: 0;
    color: #c8d2e1;
    font-size: 17px;
  }

@media (max-width: 980px) {
    .hero-grid,
    .cta-inner {
      grid-template-columns: 1fr;
      flex-direction: column;
      align-items: flex-start;
    }

    .step-card-image {
      height: 360px;
    }

    .steps-row-3 {
      grid-template-columns: repeat(2, 1fr);
    }

    .steps-row-3 .step-card:last-child {
      grid-column: 1 / -1;
      max-width: calc(50% - 10px);
      margin: 0 auto;
      width: 100%;
    }

    .steps-row-2 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .steps-row-2 .step-card:first-child {
      grid-column: 1 / 3;
    }

    .steps-row-2 .step-card:last-child {
      grid-column: 3 / 5;
    }

    .hero h1 {
      font-size: 30px;
      line-height: 1.25;
    }

    .phone-wrap {
      order: -1;
    }

    .step-card-image--fill img {
      object-fit: contain;
    }

    .cta-inner{
      text-align: center;
    }
    .cta-inner .btn{
      margin-left: auto;
      margin-right: auto;
    }
  }

  @media (max-width: 620px) {
    .hero h1 {
      font-size: 26px;
    }

    .steps-row-3 {
      grid-template-columns: 1fr;
    }

    .steps-row-3 .step-card:last-child {
      max-width: none;
    }

    .step-card-image {
      height: min(340px, 72vw);
    }

    .steps-row-2 {
      grid-template-columns: 1fr;
    }

    .steps-row-2 .step-card:first-child,
    .steps-row-2 .step-card:last-child {
      grid-column: 1;
    }

    .req-card {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      padding: 18px;
    }

    .req-card-image {
      flex: none;
      width: 100%;
      height: 160px;
    }

    .hero-actions {
      flex-direction: column;
    }

    .hero-actions .btn {
      flex: none;
      width: 100%;
    }

    .phone {
      /*width: 290px;*/
      margin-left: auto;
      margin-right: auto;
    }

    .phone-screen {
      height: 600px;
    }
  }
/* End */
/* /chat-bot-v-max-dlya-bul/style.css?178179094716640 */
