a { color:inherit; } .container { max-width:1220px; margin:auto; padding:0 24px; }

    body {
      padding-top: var(--header-height, 104px);
    }

    body > header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1000;
    }
:root {
      --nav:#5e6f91;
      --nav2:#66799b;
      --light:#dde6ef;
      --hero1:#0e2034;
      --hero2:#143c53;
      --card:#ffffff;
      --line:#d8e6ee;
      --text:#102033;
      --muted:#617386;
      --accent:#36c5d7;
      --green:#2fc88b;
      --red:#d53a32;
      --red2:#e34a42;
      --shadow:0 18px 50px rgba(16,32,51,.14);
      --font:"Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    * { box-sizing:border-box; }
    html { scroll-behavior:smooth; }
    body {
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:var(--light);
      line-height:1.62;
      letter-spacing:.003em;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a { color:inherit; }
    .container { max-width:1220px; margin:auto; padding:0 24px; }

    .nav-wrap {

      background:linear-gradient(180deg, #586476, #667386);
      box-shadow:0 10px 28px rgba(16,32,51,.16);
      border-bottom:1px solid rgba(255,255,255,.12);
      position:relative;
    }
    .nav {
      min-height:102px;
      display:grid;
      grid-template-columns:minmax(260px, 370px) 1fr auto;
      align-items:center;
      gap:18px;
      padding:10px 0;
    }
    .logo-link {
      display:inline-flex;
      align-items:center;
      justify-content:center;
      text-decoration:none;
      min-width:0;
      width:min(360px, 27vw);
      height:76px;
      padding:3px 3.5%;
      background:linear-gradient(180deg, rgba(214,220,227,.90), rgba(190,198,208,.84));
      border:1px solid rgba(255,255,255,.30);
      border-radius:16px;
      box-shadow:
        0 8px 18px rgba(16,32,51,.12),
        inset 0 1px 0 rgba(255,255,255,.42);
    }
    .logo-img {
      display:block;
      width:auto;
      height:auto;
      max-width:100%;
      max-height:72px;
      object-fit:contain;
      filter:
        drop-shadow(0 1px 0 rgba(255,255,255,.75))
        drop-shadow(0 3px 8px rgba(0,0,0,.12));
    }
    .nav-center {
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:6px;
      min-width:0;
    }
    .menu {
      display:flex;
      gap:2px;
      justify-content:center;
      flex-wrap:nowrap;
      min-width:0;
      width:100%;
    }
    .menu a {
      text-decoration:none;
      color:#f6fbff;
      font-size:15px;
      font-weight:700;
      padding:8px 10px;
      border-radius:999px;
      opacity:.98;
      white-space:nowrap;
    }
    .menu a:hover { background:rgba(255,255,255,.11); }
    .support-inline {
      display:flex;
      justify-content:center;
      align-items:center;
      gap:12px;
      flex-wrap:nowrap;
      color:#e8f3fb;
      font-size:13.5px;
      min-width:0;
      width:100%;
      border-left:0;
      padding-left:0;
      opacity:.96;
    }
    .support-inline a,
    .support-inline span {
      text-decoration:none;
      white-space:nowrap;
    }
    .nav-actions {
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:nowrap;
      justify-content:flex-end;
    }
    .btn {
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:10px 15px;
      border-radius:999px;
      border:1px solid transparent;
      font-family:var(--font);
      font-size:15px;
      font-weight:700;
      text-decoration:none;
      cursor:pointer;
      transition:.18s ease;
      white-space:nowrap;
    }
    .btn:hover { transform:translateY(-1px); }
    .btn-login {
      color:#fff;
      background:linear-gradient(180deg, var(--red2), var(--red));
      box-shadow:0 14px 26px rgba(213,58,50,.26);
    }
    .btn-ghost {
      color:#f2fbff;
      background:rgba(255,255,255,.10);
      border-color:rgba(255,255,255,.18);
    }
    .btn-main {
      color:#0b2032;
      background:linear-gradient(135deg, #c9f6ff, var(--accent));
      box-shadow:0 14px 28px rgba(54,197,215,.20);
    }

    .hero {
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 10% 0, rgba(54,197,215,.22), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(207,239,255,.12), transparent 26%),
        linear-gradient(135deg, var(--hero1), var(--hero2));
      color:#f4fbff;
      padding:60px 0 34px;
    }
    .hero-grid {
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:36px;
      align-items:center;
    }
    .eyebrow {
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      color:#d9f5ff;
      font-size:14px;
      font-weight:700;
    }
    .eyebrow:before {
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 6px rgba(47,200,139,.14);
    }
    h1 {
      margin:18px 0 16px;
      font-size:clamp(34px,4.35vw,58px);
      line-height:1.05;
      letter-spacing:-.028em;
      font-weight:700;
      max-width:760px;
    }
    .lead {
      margin:0;
      color:#d6e6f3;
      font-size:clamp(17px,2vw,21px);
      max-width:680px;
      font-weight:400;
    }
    .hero-actions {
      margin-top:28px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    .hero-actions .btn {
      min-width:190px;
    }

    .mock-stage {
      position:relative;
      padding:18px 0 18px 12px;
    }
    .mock-window {
      position:relative;
      overflow:hidden;
      border-radius:26px;
      border:1px solid rgba(255,255,255,.18);
      background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
      box-shadow:0 36px 84px rgba(0,0,0,.28);
      transform:perspective(1200px) rotateY(-8deg) rotateX(3deg);
      transform-origin:center;
    }
    .mock-top {
      height:48px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:0 16px;
      background:linear-gradient(90deg, #0c1b2b, #11344d);
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .dots { display:flex; gap:7px; }
    .dots i {
      width:10px;height:10px;border-radius:50%;
      background:#7894aa;
    }
    .dots i:nth-child(1) { background:#ff6b6b; }
    .dots i:nth-child(2) { background:#ffd166; }
    .dots i:nth-child(3) { background:#38d39f; }
    .mock-url {
      max-width:320px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
      font-size:13px;
      color:#c6dceb;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      border-radius:999px;
      padding:6px 12px;
    }
    .slides {
      position:relative;
      background:#edf5fb;
      aspect-ratio: 1418 / 947;
    }
    .slide {
      position:absolute;
      inset:0;
      opacity:0;
      transition:opacity .6s ease;
    }
    .slide.active { opacity:1; }
    .slide img {
      width:100%;
      height:100%;
      display:block;
      object-fit:cover;
    }
    .slide-caption {
      position:absolute;
      left:16px;
      bottom:16px;
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      background:rgba(11,30,46,.72);
      color:#f5fbff;
      border:1px solid rgba(255,255,255,.12);
      font-size:14px;
      font-weight:700;
      backdrop-filter:blur(10px);
    }
    .slide-dots {
      position:absolute;
      right:16px;
      bottom:16px;
      display:flex;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(11,30,46,.66);
      border:1px solid rgba(255,255,255,.12);
      backdrop-filter:blur(10px);
    }
    .dot {
      width:10px;height:10px;border-radius:50%;
      border:0;
      padding:0;
      background:rgba(255,255,255,.35);
      cursor:pointer;
    }
    .dot.active { background:#ffffff; box-shadow:0 0 0 3px rgba(255,255,255,.16); }

    .highlights-wrap {
      margin-top:-6px;
      background:linear-gradient(180deg, #e6edf4, var(--light));
      padding:0 0 22px;
    }
    .highlights {
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
      transform:translateY(-24px);
    }
    .highlight {
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      box-shadow:var(--shadow);
      padding:20px 22px;
    }
    .highlight b {
      display:block;
      color:#102033;
      font-size:18px;
      margin-bottom:6px;
      font-weight:700;
    }
    .highlight span {
      color:var(--muted);
      font-size:14px;
      display:block;
    }

    .section {
      padding:58px 0;
    }
    .section-head {
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:24px;
      margin-bottom:24px;
    }
    .section-head h2 {
      margin:0;
      font-size:clamp(30px,3.3vw,44px);
      line-height:1.08;
      letter-spacing:-.02em;
      font-weight:700;
      color:#102033;
    }
    .section-head p {
      margin:0;
      max-width:650px;
      color:var(--muted);
      font-size:17px;
    }

    .bento {
      display:grid;
      grid-template-columns:1.08fr .92fr .92fr;
      grid-template-rows:260px 260px;
      grid-template-areas:
        "one two four"
        "one three five";
      column-gap:16px;
      row-gap:0;
      align-items:stretch;
    }
    .bento-card {
      background:#fff;
      border:1px solid var(--line);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:22px;
      color:#102033;
      overflow:hidden;
      min-height:0;
      height:100%;
    }
    .bento-card.dark {
      background:linear-gradient(135deg, #183347, #102739);
      color:#f7fbff;
      border-color:rgba(255,255,255,.10);
    }
    .bento-card.dark p { color:#d7e7f3; }
    .card-01 { grid-area: one; }
    .card-02 { grid-area: two; border-bottom-left-radius:0; border-bottom-right-radius:0; }
    .card-03 { grid-area: three; border-top-left-radius:0; border-top-right-radius:0; border-top:0; }
    .card-04 { grid-area: four; border-bottom-left-radius:0; border-bottom-right-radius:0; }
    .card-05 { grid-area: five; border-top-left-radius:0; border-top-right-radius:0; border-top:0; }
    .num {
      width:42px;height:42px;
      display:grid;place-items:center;
      border-radius:14px;
      background:linear-gradient(135deg, #d7f7ff, var(--accent));
      color:#0d2134;
      font-weight:700;
      margin-bottom:16px;
    }
    .bento-card h3 {
      margin:0 0 10px;
      font-size:22px;
      line-height:1.12;
      letter-spacing:-.015em;
      font-weight:700;
    }
    .bento-card p {
      margin:0;
      color:var(--muted);
      font-size:15px;
    }
    .screen-mini {
      margin-top:22px;
      border-radius:22px;
      border:1px solid #2d5a73;
      overflow:hidden;
      background:#0c2131;
      box-shadow:0 18px 36px rgba(12,33,49,.28);
    }
    .screen-mini img {
      width:100%;
      display:block;
      height:auto;
    }

    .workflow {
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .step {
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      box-shadow:var(--shadow);
      padding:22px;
    }
    .step-no {
      width:38px;height:38px;
      border-radius:14px;
      display:grid;place-items:center;
      background:linear-gradient(135deg, #d7f7ff, var(--accent));
      color:#0d2134;
      font-weight:700;
      margin-bottom:15px;
    }
    .step strong {
      display:block;
      font-size:19px;
      margin-bottom:6px;
      font-weight:700;
    }
    .step span {
      color:var(--muted);
    }

    .pricing-wrap {
      display:grid;
      grid-template-columns:1fr .94fr;
      gap:18px;
      align-items:start;
    }
    .price-panel, .invoice {
      background:#fff;
      border:1px solid var(--line);
      border-radius:30px;
      box-shadow:var(--shadow);
      padding:22px;
    }
    .prices {
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .price {
      position:relative;
      border:2px solid transparent;
      background:#f7fbfd;
      border-radius:24px;
      padding:18px;
      min-height:170px;
      text-align:left;
      font-family:var(--font);
      cursor:pointer;
      transition:.18s ease;
    }
    .price:hover { transform:translateY(-2px); }
    .price.active {
      border-color:var(--green);
      background:linear-gradient(180deg, #ffffff, #ecfff7);
      box-shadow:0 16px 32px rgba(47,200,139,.18);
    }
    .price.active:after {
      content:"Выбрано";
      position:absolute; right:12px; top:12px;
      font-size:12px; font-weight:700;
      padding:4px 9px; border-radius:999px;
      background:linear-gradient(135deg, #d7f7ff, var(--green));
      color:#0d2134;
    }
    .term { color:#0b6782; font-weight:700; margin-bottom:12px; }
    .sum { color:#102033; font-size:32px; font-weight:700; line-height:1; letter-spacing:-.02em; margin-bottom:8px; }
    .note { color:var(--muted); font-size:13px; }
    .invoice h3 {
      margin:0 0 8px;
      font-size:26px;
      line-height:1.1;
      letter-spacing:-.015em;
      font-weight:700;
    }
    .invoice p { margin:0 0 18px; color:var(--muted); }
    .form {
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .full { grid-column:1 / -1; }
    label {
      display:block;
      font-size:13px;
      font-weight:700;
      color:#415166;
      margin-bottom:6px;
    }
    input, select, textarea {
      width:100%;
      min-height:45px;
      border:1px solid #d6e3eb;
      border-radius:14px;
      background:#fbfdff;
      padding:10px 12px;
      font-family:var(--font);
      color:#102033;
      font-size:15px;
    }
    textarea { min-height:76px; resize:vertical; }
    .consent {
      display:flex;
      gap:9px;
      margin:14px 0;
      color:var(--muted);
      font-size:13px;
    }
    .consent input {
      width:16px; min-height:16px; margin-top:3px;
    }
    .form-note { font-size:12px; color:#6f8195; margin-top:10px; }

    .docs-grid {
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
    }
    .doc-card {
      display:block;
      text-decoration:none;
      background:#fff;
      border:1px solid var(--line);
      border-radius:26px;
      box-shadow:var(--shadow);
      padding:22px;
    }
    .doc-icon {
      width:42px;height:42px;
      display:grid;place-items:center;
      border-radius:16px;
      background:linear-gradient(135deg, #d7f7ff, var(--accent));
      color:#0d2134;
      font-weight:700;
      margin-bottom:16px;
    }
    .doc-card strong {
      display:block;
      font-size:20px;
      margin-bottom:6px;
      font-weight:700;
    }
    .doc-card span { color:var(--muted); }

    .final-cta {
      background:linear-gradient(135deg, #173349, #10283a);
      color:#fff;
      border-radius:34px;
      border:1px solid rgba(255,255,255,.10);
      padding:32px;
      box-shadow:var(--shadow);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .final-cta h2 {
      margin:0 0 8px;
      font-size:32px;
      line-height:1.12;
      letter-spacing:-.015em;
      font-weight:700;
    }
    .final-cta p { margin:0; color:#d8e6f1; }
    .final-actions {
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }

    .contacts-grid {
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }
    .contact-card {
      background:#fff;
      border:1px solid var(--line);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:24px;
    }
    .contact-card h3 {
      margin:0 0 14px;
      font-size:24px;
      line-height:1.12;
      letter-spacing:-.015em;
      font-weight:700;
    }
    .contact-list {
      display:grid;
      gap:10px;
      color:#102033;
    }
    .contact-list div span {
      display:block;
      color:var(--muted);
      font-size:14px;
      margin-bottom:2px;
    }

    footer {
      padding:30px 0 40px;
      color:#617386;
    }
    .footer-note {
      border-top:1px solid var(--line);
      padding-top:20px;
      font-size:14px;
      text-align:center;
    }
    .footer-note a {
      color:#2b6ea0;
      text-decoration:underline;
    }

    @media (max-width: 1380px) {
      .nav {
        grid-template-columns:minmax(230px, 320px) 1fr auto;
        gap:14px;
      }
      .logo-link {
        width:min(320px, 25vw);
        padding:5px 3.5%;
      }
      .logo-img { max-height:64px; }
      .menu a { font-size:14px; padding:7px 8px; }
      .support-inline { font-size:12.5px; gap:8px; }
      .nav-actions .btn { padding:9px 12px; font-size:14px; }
    }

    @media (max-width: 1100px) {
      .nav {
        grid-template-columns:1fr;
        padding:14px 0;
        gap:12px;
      }
      .logo-link {
        width:min(480px, 100%);
        margin:0 auto;
        padding:5px 3.5%;
      }
      .logo-img { max-height:68px; }
      .nav-center {
        flex-direction:column;
        gap:8px;
        white-space:normal;
      }
      .menu {
        justify-content:center;
        flex-wrap:wrap;
      }
      .support-inline {
        justify-content:center;
        flex-wrap:wrap;
      }
      .nav-actions {
        justify-content:center;
      }
      .hero-grid, .pricing-wrap, .contacts-grid { grid-template-columns:1fr; }
      .mock-window { transform:none; }
      .bento {
        grid-template-columns:1fr 1fr;
        grid-template-rows:auto;
        grid-template-areas:
          "one one"
          "two four"
          "three five";
        column-gap:16px;
        row-gap:0;
      }
      .workflow { grid-template-columns:repeat(2,1fr); }
    }
    @media (max-width: 820px) {
      .container { padding:0 16px; }
      .nav-actions { width:100%; display:grid; grid-template-columns:1fr 1fr; }
      .nav-actions .btn { width:100%; }
      .hero { padding:44px 0 26px; }
      .hero-actions { display:grid; grid-template-columns:1fr; }
      .hero-actions .btn { width:100%; }
      .highlights { grid-template-columns:1fr; transform:translateY(-18px); }
      .section-head { display:block; }
      .section-head p { margin-top:10px; }
      .bento {
        grid-template-columns:1fr;
        grid-template-rows:auto;
        grid-template-areas:
          "one"
          "two"
          "three"
          "four"
          "five";
        row-gap:16px;
      }
      .bento-card {
        height:auto;
        min-height:auto;
      }
      .card-02, .card-03, .card-04, .card-05 {
        border-radius:28px;
        border-top:1px solid var(--line);
      }
      .workflow, .prices, .docs-grid, .form, .contacts-grid { grid-template-columns:1fr; }
      .full { grid-column:auto; }
      .final-cta { display:block; }
      .final-actions { margin-top:18px; display:grid; grid-template-columns:1fr; }
      .mock-stage { padding-left:0; }
    }
    @media (max-width: 520px) {
      .logo-link {
        width:100%;
        padding:4px 3.5%;
        border-radius:14px;
      }
      .logo-img { width:auto; height:auto; max-width:100%; max-height:58px; }
      .menu a { font-size:14px; padding:8px 10px; }
      h1 { font-size:clamp(30px, 8vw, 44px); }
      .mock-url { max-width:190px; }
      .slide-caption { left:12px; right:12px; bottom:46px; border-radius:14px; }
      .slide-dots { right:12px; left:12px; justify-content:center; bottom:10px; }
      .nav-actions { grid-template-columns:1fr; }
      .support-inline { gap:10px; }
    }


section[id] { scroll-margin-top: calc(var(--header-height, 104px) + 18px); }


/* Working invoice form and document pages */
.notice {
  border-radius:18px;
  padding:14px 16px;
  margin:14px 0;
  font-weight:700;
  line-height:1.4;
}
.notice--success {
  background:#eaf9f2;
  border:1px solid #b8ead1;
  color:#14643f;
}
.notice--error {
  background:#fff0f0;
  border:1px solid #f1b8b8;
  color:#8b2424;
}
.honeypot {
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
}
.invoice input:invalid,
.invoice select:invalid,
.invoice textarea:invalid {
  box-shadow:none;
}
.invoice input:focus,
.invoice select:focus,
.invoice textarea:focus {
  outline:2px solid rgba(54,197,215,.32);
  border-color:rgba(54,197,215,.75);
}
.content-page {
  background:linear-gradient(180deg, #e6edf4, var(--light));
  padding:58px 0 72px;
}
.content-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:34px;
  color:#102033;
}
.content-card h1,
.content-card .h1,
.content-card .guide-title,
.content-card .doc-title {
  color:#102033;
  font-size:clamp(30px,3.4vw,46px);
  line-height:1.12;
  margin:0 0 16px;
  font-weight:700;
}
.content-card h2,
.content-card .h2 {
  margin:30px 0 12px;
  font-size:24px;
  line-height:1.2;
  color:#102033;
}
.content-card h3 {
  margin:24px 0 10px;
  font-size:20px;
  line-height:1.25;
  color:#102033;
}
.content-card p,
.content-card li {
  color:#4e6174;
  font-size:16px;
}
.content-card a {
  color:#1f6b8c;
  text-decoration:underline;
}
.content-card .doc-text {
  max-width:960px;
}
.content-card .help-actions {
  display:flex;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:20px;
}
.content-card .btn-secondary,
.content-card .btn-primary,
.content-card .btn-main,
.content-card .btn-login {
  text-decoration:none;
}
.content-card .btn-secondary {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 15px;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  color:#0b2032;
  background:linear-gradient(135deg, #c9f6ff, var(--accent));
  box-shadow:0 14px 28px rgba(54,197,215,.20);
}
.content-card .sep {
  width:86px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--accent), var(--green));
  margin:12px 0 18px;
}
.content-card .ul {
  display:grid;
  gap:10px;
  padding-left:20px;
}
.content-card .guide-subtitle,
.content-card .guide-version {
  margin:0 0 8px;
  color:#5f7184;
}
.content-card img {
  max-width:100%;
  height:auto;
  border-radius:14px;
}
.content-card table {
  max-width:100%;
  border-collapse:collapse;
  overflow:auto;
}
.content-card .num {
  width:auto;
  height:auto;
  display:inline;
  border-radius:0;
  background:none;
  color:inherit;
  font-weight:inherit;
  margin:0;
}
.content-card .lvl1 { font-weight:700; color:#102033; margin-top:18px; }
.content-card .lvl2 { margin-left:0; }
.doc-page-actions {
  margin-top:28px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.pricing-page .section {
  padding:0;
}
.pricing-page .section-head {
  margin-bottom:24px;
}
@media (max-width: 820px) {
  .content-page { padding:34px 0 48px; }
  .content-card { padding:24px; border-radius:24px; }
  .content-card .help-actions { justify-content:flex-start; }
}

.honeypot,
.honeypot * {
  display:none !important;
  visibility:hidden !important;
  position:absolute !important;
  left:-10000px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.invoice-toast {
  position:fixed;
  left:50%;
  top:calc(var(--header-height, 104px) + 18px);
  transform:translateX(-50%);
  z-index:1200;
  width:min(720px, calc(100% - 32px));
  padding:16px 20px;
  border-radius:20px;
  box-shadow:0 18px 46px rgba(16,32,51,.22);
  font-weight:700;
  line-height:1.45;
}
.invoice-toast--success {
  background:#eaf9f2;
  border:1px solid #a9e2c6;
  color:#125d38;
}
.invoice-toast--error {
  background:#fff0f0;
  border:1px solid #efb3b3;
  color:#842020;
}
.invoice-toast__close {
  float:right;
  margin-left:12px;
  border:0;
  background:transparent;
  color:inherit;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
@media (max-width: 520px) {
  .invoice-toast {
    top:calc(var(--header-height, 104px) + 10px);
    padding:14px 16px;
    border-radius:16px;
  }
}
