.acceptance-hero--mono,
.acceptance-hero--mono * {
  box-sizing: border-box;
}

.acceptance-hero--mono {
  --bg: #f4f4f1;
  --card: #fff;
  --text: #141414;
  --muted: #5d625f;
  --line: #deded9;
  --accent: #000;

  width: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
}

.acceptance-hero__wrap {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 720px;
}

.acceptance-hero__left {
  position: relative;
  z-index: 2;
  padding: 56px 40px 44px 58px;
  background: linear-gradient(90deg, #fff 0%, #fff 88%, rgba(255,255,255,.78) 100%);
}

.acceptance-hero--mono h1 {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.02em;
}

.acceptance-hero__title {
  margin: 0 0 22px;
  font-size: 4rem;
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.035em;
}

.acceptance-hero__subtitle {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.acceptance-hero__logos {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
}

.acceptance-hero__logo {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  text-transform: uppercase;
}

.acceptance-hero__logo b {
  color: var(--text);
  font-size: 25px;
  line-height: 1;
}

.acceptance-hero__logo span {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.2;
}

.acceptance-hero__line {
  width: 1px;
  height: 48px;
  background: var(--line);
}

/* ИЗМЕНЕНО: Блок статистики теперь flex, чтобы центрировать нечетную карточку */
.acceptance-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
  max-width: 920px;
  margin-bottom: 26px;
}

/* ИЗМЕНЕНО: Карточка теперь выстраивает контент вертикально (flex-direction: column) */
.acceptance-hero__stat {
  width: calc(33.333% - 12px); /* На десктопе 3 в ряд */
  min-height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
}

.acceptance-hero__stat i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px; /* ИЗМЕНЕНО: Добавлен отступ снизу от иконки */
}

.acceptance-hero__stat p {
  margin: 0;
}

.acceptance-hero__stat b {
  display: block;
  font-size: 20px;
  line-height: 1.15;
}

.acceptance-hero__stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.acceptance-hero__report {
  position: relative;
  max-width: 920px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 10px 26px rgba(20,20,20,.07);
}

.acceptance-hero__pdf {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 4px 7px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.acceptance-hero__cover {
  display: block;
  width: 118px;
  height: 130px;
  overflow: hidden;
  border-radius: 8px;
  background: #eaebed;
}

.acceptance-hero__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.acceptance-hero__report-text h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.25;
}

.acceptance-hero__report-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.acceptance-hero__report-text li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

.acceptance-hero__report-text li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.acceptance-hero__report-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.acceptance-hero__report-links a {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.acceptance-hero__right {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #fff;
}

.acceptance-hero__right:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 32%);
}

.acceptance-hero__photo {
  position: absolute;
  inset: 0;
}

.acceptance-hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.acceptance-hero__btn {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 110px;
  width: min(82%, 410px);
  height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}

.acceptance-hero__btn:hover {
  background: #2a2a2a;
}

@media (max-width: 1200px) {
  .acceptance-hero__wrap {
    grid-template-columns: 65% 35%;
  }

  .acceptance-hero__left {
    padding: 44px 28px 38px;
  }
}

@media (max-width: 960px) {
  .acceptance-hero--mono {
    padding-top: 2rem;
  }

  .acceptance-hero__wrap {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .acceptance-hero__left {
    padding: 32px 20px 24px;
    background: #fff;
  }

  .acceptance-hero__right {
    min-height: 360px;
  }

  .acceptance-hero__btn {
    bottom: 28px;
    width: calc(100% - 40px);
    max-width: 430px;
    height: 60px;
    font-size: 18px;
  }

  /* ИЗМЕНЕНО: Делаем на мобилке 2 карточки в ряд с центрированием */
  .acceptance-hero__stats {
    justify-content: center; 
    gap: 10px;
    margin-bottom: 20px;
  }

  /* ИЗМЕНЕНО: Ширина почти 50% минус отступ */
  .acceptance-hero__stat {
    width: calc(50% - 5px);
    min-height: 64px;
  }
}

@media (max-width: 640px) {
  .acceptance-hero--mono {
    padding-top: 2rem;
  }

  .acceptance-hero__left {
    padding: 28px 16px 20px;
  }

  .acceptance-hero--mono h1 {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .acceptance-hero__title {
    margin-bottom: 16px;
    font-size: 39px;
    line-height: 1;
  }

  .acceptance-hero__subtitle {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.4;
  }

  .acceptance-hero__subtitle br,
  .acceptance-hero__title br {
    display: none;
  }

  .acceptance-hero__logos {
    gap: 14px;
    margin-bottom: 20px;
  }

  .acceptance-hero__logo b {
    font-size: 20px;
  }

  .acceptance-hero__logo span {
    font-size: 8px;
  }

  .acceptance-hero__line {
    height: 38px;
  }

  .acceptance-hero__stat {
    padding: 14px 10px;
  }

  .acceptance-hero__stat i {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 17px;
  }

  .acceptance-hero__stat b {
    font-size: 18px;
  }

  .acceptance-hero__report {
    display: block;
    padding: 18px;
    border-radius: 14px;
  }

  .acceptance-hero__cover {
    float: left;
    width: 84px;
    height: 108px;
    margin: 2px 16px 10px 0;
  }

  .acceptance-hero__report-text h3 {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .acceptance-hero__report-text li {
    margin-bottom: 7px;
    font-size: 13px;
  }

  .acceptance-hero__report-links {
    clear: both;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 12px;
  }

  .acceptance-hero__report-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--accent);
    border-radius: 100px;
  }

  .acceptance-hero__right {
    min-height: 330px;
  }
} /* ИЗМЕНЕНО: удалена лишняя закрывающая скобка, которая ломала код */

.accordion-item:nth-of-type(1) {
  border-top: 1px solid #141414;
  margin-top: 32px;
  padding-top: 32px;
}

.swiper-slide {
  width: 240px;
}

.case-preview {
  width: 240px;
}

@media (max-width: 480px) {
  .acceptance-hero__title {
    font-size: 40px;
    line-height: 1.02;
    letter-spacing: -1.5px;
  }
  
  .acceptance-hero--mono {
    padding-top: 2rem;
  }

  .acceptance-hero__right {
    min-height: auto;
    padding: 16px;
    background: #fff;
  }

  .acceptance-hero__right:before,
  .acceptance-hero__photo {
    display: none;
  }

  .acceptance-hero__btn {
    position: static;
    width: 100%;
    max-width: none;
    height: 58px;
    transform: none;
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .acceptance-hero__logos {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .acceptance-hero__logo {
    max-width: 46%;
  }

  .acceptance-hero__logo:last-child {
    max-width: 100%;
    flex-basis: 100%;
  }

  .acceptance-hero__title span {
    display: block;
    line-height: 1.08;
  }
}

.acceptance-hero__legal {
  width: auto;
  height: auto;
  background: transparent;
  margin-top: -10px;
  margin-bottom: 34px;
  display: block;
}

.acceptance-hero__legal .acceptance-hero__logo b {
  display: block;
  font-size: 24px;
  line-height: .95;
}

@media (max-width: 640px) {
  .acceptance-hero__logos {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 12px;
  }

  .acceptance-hero__logos > .acceptance-hero__logo {
    max-width: none;
    flex-basis: auto;
  }

  .acceptance-hero__logos > .acceptance-hero__line {
    width: 1px;
    height: 38px;
    background: var(--line);
  }

  .acceptance-hero__legal {
    width: 100%;
    margin: 10px 0 28px;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .acceptance-hero__legal .acceptance-hero__logo {
    width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .acceptance-hero__legal .acceptance-hero__logo b {
    width: 100%;
    text-align: center;
    font-size: 28px;
    line-height: .95;
  }
  
  .acceptance-hero__report-text li {
    padding-left: 0;
  }

  .acceptance-hero__report-text li::before {
    display: none;
  }
}


 .mrn-calc {
  --mrn-dark: #212121;
  --mrn-text: #222;
  --mrn-muted: #666;
  --mrn-border: #e5e7eb;
  --mrn-bg: #f8f9fa;
  font-family: 'Tilda Sans', 'Roboto', Arial, sans-serif;
  color: var(--mrn-text);
  background-color: #ececec;
}
  .mrn-calc *,
  .mrn-calc *::before,
  .mrn-calc *::after {
    box-sizing: border-box;
  }

  .mrn-calc__wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .08);
  }

  .mrn-calc__header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
  }

  .mrn-calc__header h2 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
  }

  .mrn-calc__header p,
  .mrn-hint,
  .mrn-result__sub,
  .mrn-result__note,
  .mrn-mini {
    line-height: 1.45;
    color: var(--mrn-muted);
  }

  .mrn-calc__header p {
    margin: 0;
    font-size: 16px;
  }

  .mrn-calc__grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
  }

  .mrn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .mrn-field {
    margin-bottom: 20px;
  }

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

  .mrn-hint {
    margin: 6px 0 0;
    font-size: 12px;
    color: #888;
  }

  .mrn-input,
  .mrn-select,
  .mrn-textarea,
  .mrn-btn {
    width: 100%;
    font-family: inherit;
    font-size: 16px;
    border-radius: 8px;
  }

  .mrn-input,
  .mrn-select {
    height: 50px;
    padding: 0 16px;
  }

  .mrn-input,
  .mrn-select,
  .mrn-textarea {
    border: 1px solid #d1d5db;
    color: var(--mrn-text);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
  }

  .mrn-textarea {
    min-height: 96px;
    padding: 14px 16px;
    line-height: 1.45;
    resize: vertical;
  }

  .mrn-input:focus,
  .mrn-select:focus,
  .mrn-textarea:focus {
    outline: none;
    border-color: var(--mrn-dark);
    box-shadow: 0 0 0 3px rgba(33, 33, 33, .12);
  }

  .mrn-select {
    appearance: none;
    padding-right: 42px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23212121' d='M10.59.59L6 5.17 1.41.59 0 2l6 6 6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
  }

  .mrn-extras-title {
    margin: 28px 0 15px;
    font-size: 16px;
    font-weight: 700;
  }

  .mrn-extra {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    padding: 12px 16px;
    background: var(--mrn-bg);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s, border-color .2s;
  }

  .mrn-extra:hover {
    background: #f1f3f5;
    border-color: #d1d5db;
  }

  .mrn-extra input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--mrn-dark);
    cursor: pointer;
  }

  .mrn-extra b,
  .mrn-extra span {
    display: block;
  }

  .mrn-extra b {
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }

  .mrn-extra span {
    margin-top: 2px;
    font-size: 13px;
    color: var(--mrn-muted);
  }

  .mrn-calc__result {
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
    background: var(--mrn-bg);
    border: 1px solid #e9ecef;
    border-radius: 10px;
  }

  .mrn-result__label {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #777;
  }

  .mrn-result__price {
    margin: 0 0 8px;
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
    color: #111;
  }

  .mrn-result__sub {
    margin: 0 0 20px;
    font-size: 13px;
  }

  .mrn-breakdown {
    margin: 0 0 20px;
    padding: 20px 0;
    list-style: none;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  .mrn-line {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.3;
  }

  .mrn-line:last-child {
    margin-bottom: 0;
  }

  .mrn-line span {
    color: #555;
  }

  .mrn-line b {
    text-align: right;
    color: #222;
  }

  .mrn-result__note {
    margin: 0 0 25px;
    font-size: 12px;
    color: #888;
  }

  .mrn-actions {
    display: grid;
    gap: 12px;
  }

  .mrn-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid #d1d5db;
    text-decoration: none !important;
    text-align: center;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
  }

  .mrn-btn--primary {
    background: var(--mrn-dark);
    border-color: var(--mrn-dark);
    color: #fff !important;
  }

  .mrn-btn--primary:hover {
    background: #000;
    border-color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
  }

  .mrn-btn--secondary {
    background: #fff;
    color: #333 !important;
  }

  .mrn-btn--secondary:hover {
    background: var(--mrn-dark);
    border-color: var(--mrn-dark);
    color: #fff !important;
  }

  .mrn-messenger {
    position: relative;
  }

  .mrn-messenger__menu {
    display: none;
    margin-top: 10px;
    padding: 8px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  }

  .mrn-messenger.is-open .mrn-messenger__menu {
    display: block;
  }

  .mrn-messenger__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    color: #222 !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s;
  }

  .mrn-messenger__item:hover {
    background: #f1f3f5;
  }

  .mrn-messenger__item span {
    color: #888;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
  }

  .mrn-mini {
    margin-top: 15px;
    font-size: 11px;
    text-align: center;
    color: #999;
  }

  .mrn-hidden {
    display: none !important;
  }

  @media (max-width: 768px) {
    .mrn-calc__wrap {
      padding: 25px 20px;
    }

    .mrn-calc__grid,
    .mrn-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .mrn-calc__grid {
      gap: 30px;
    }

    .mrn-calc__header h2 {
      font-size: 24px;
    }

    .mrn-result__price {
      font-size: 32px;
    }

    .mrn-messenger__item {
      align-items: flex-start;
      flex-direction: column;
      gap: 4px;
    }

    .mrn-messenger__item span {
      white-space: normal;
    }
  }