/* ===== OTOPLENIE PAGE ===== */

    /* --- Hero dark --- */
    .ot-hero {
      background: var(--navy);
      border-radius: 0 0 28px 28px;
      min-height: 500px;
      padding: 32px 0 60px;
      position: relative;
      overflow: hidden;
    }
    .ot-hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(27,147,212,.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .ot-hero__breadcrumbs {
      display: flex;
      gap: 6px;
      font-size: 13px;
      color: rgba(255,255,255,.45);
      align-items: center;
      margin-bottom: 32px;
    }
    .ot-hero__breadcrumbs a { color: rgba(255,255,255,.65); transition: color .2s; }
    .ot-hero__breadcrumbs a:hover { color: var(--white); }
    .ot-hero__breadcrumbs-sep { color: rgba(255,255,255,.25); }
    .ot-hero__inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
    }
    .ot-hero__h1 {
      font-size: 38px;
      font-weight: 900;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .ot-hero__text {
      font-size: 15px;
      color: rgba(255,255,255,.65);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 680px;
    }
    .ot-hero__ratings {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-shrink: 0;
    }
    .ot-rating-badge {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 12px;
      padding: 16px 24px;
      text-align: center;
      min-width: 140px;
    }
    .ot-rating-badge__name {
      font-size: 13px;
      color: rgba(255,255,255,.5);
      margin-bottom: 6px;
    }
    .ot-rating-badge__score {
      font-size: 22px;
      font-weight: 900;
      color: var(--white);
    }
    .ot-rating-badge__stars {
      color: #FFB400;
      font-size: 14px;
      margin-top: 2px;
    }

    /* --- USP Grid --- */
    .ot-usp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      padding: 48px 0;
    }
    .ot-usp-card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px 24px;
      box-shadow: 0 2px 16px rgba(0,0,0,.07);
      position: relative;
      overflow: hidden;
    }
    .ot-usp-card__num {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 28px;
      height: 28px;
      background: #22a55b;
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 900;
    }
    .ot-usp-card__icon {
      font-size: 36px;
      margin-bottom: 14px;
      display: block;
    }
    .ot-usp-card__title {
      font-size: 16px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 10px;
      line-height: 1.3;
      padding-right: 24px;
    }
    .ot-usp-card__text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* --- Services Grid --- */
    .ot-services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .ot-service-card {
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      background: var(--white);
      transition: box-shadow .2s, border-color .2s;
    }
    .ot-service-card:hover {
      box-shadow: 0 4px 20px rgba(0,0,0,.08);
      border-color: var(--blue);
    }
    .ot-service-card__icon {
      width: 48px;
      height: 48px;
      background: #e8f4fd;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      color: var(--blue);
    }
    .ot-service-card__title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.35;
    }

    /* --- Montazh 2-col --- */
    .ot-montazh {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    .ot-montazh__title {
      font-size: 32px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 8px;
      line-height: 1.2;
    }
    .ot-montazh__sub {
      font-size: 18px;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 16px;
    }
    .ot-montazh__text {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .ot-montazh__card {
      background: var(--navy);
      border-radius: 20px;
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 280px;
    }

    /* --- Objects Grid --- */
    .ot-objects-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .ot-object-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px 16px;
      text-align: center;
      transition: box-shadow .2s, border-color .2s;
    }
    .ot-object-card:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,.08);
      border-color: var(--blue);
    }
    .ot-object-card__icon { font-size: 36px; margin-bottom: 10px; display: block; }
    .ot-object-card__name { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; }

    /* --- Pricing Grid --- */
    .ot-pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .ot-pricing-card {
      background: var(--navy);
      border-radius: 20px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .ot-pricing-card__title {
      font-size: 17px;
      font-weight: 800;
      color: var(--white);
      line-height: 1.3;
    }
    .ot-pricing-card__list {
      flex: 1;
    }
    .ot-pricing-card__list li {
      font-size: 13px;
      color: rgba(255,255,255,.6);
      line-height: 1.5;
      padding: 6px 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
      padding-left: 16px;
      position: relative;
    }
    .ot-pricing-card__list li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--blue);
      font-size: 11px;
    }
    .ot-pricing-card__price {
      font-size: 22px;
      font-weight: 900;
      color: var(--white);
    }
    .ot-pricing-card__price span {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,.45);
      display: block;
      margin-bottom: 4px;
    }

    /* --- Price Table --- */
    .ot-price-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }
    .ot-price-table th {
      background: var(--navy);
      color: var(--white);
      padding: 14px 20px;
      text-align: left;
      font-size: 15px;
      font-weight: 700;
    }
    .ot-price-table th:last-child { text-align: right; }
    .ot-price-table tr.ot-price-group td {
      background: var(--gray-bg);
      font-weight: 800;
      color: var(--text);
      padding: 12px 20px;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .4px;
      border-top: 2px solid var(--border);
    }
    .ot-price-table tr.ot-price-row td {
      padding: 12px 20px;
      border-bottom: 1px solid var(--border);
      color: var(--text);
    }
    .ot-price-table tr.ot-price-row:hover td { background: #f8fafc; }
    .ot-price-table tr.ot-price-row td:last-child {
      text-align: right;
      font-weight: 700;
      color: var(--blue);
      white-space: nowrap;
    }
    .ot-price-table-wrap {
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }

    /* --- Importance 2-col --- */
    .ot-importance-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .ot-importance-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px;
    }
    .ot-importance-card h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 12px;
    }
    .ot-importance-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* --- Mini consult form --- */
    .ot-consult {
      background: var(--navy);
      border-radius: 24px;
      padding: 48px;
      margin: 0 40px 60px;
    }
    .ot-consult h3 {
      font-size: 24px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 28px;
      line-height: 1.3;
    }
    .ot-consult-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr auto;
      gap: 16px;
      align-items: end;
    }

    /* --- Why us cards --- */
    .ot-why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .ot-why-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 24px;
    }
    .ot-why-card__icon {
      width: 52px;
      height: 52px;
      background: #e8f4fd;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: var(--blue);
    }
    .ot-why-card h3 {
      font-size: 16px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .ot-why-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* --- Stages --- */
    .ot-stages {
      counter-reset: stage;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .ot-stage {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 24px;
      align-items: flex-start;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      counter-increment: stage;
    }
    .ot-stage:last-child { border-bottom: none; }
    .ot-stage__num {
      width: 56px;
      height: 56px;
      background: var(--navy);
      color: var(--white);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 900;
      flex-shrink: 0;
    }
    .ot-stage__title {
      font-size: 17px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 6px;
      margin-top: 8px;
    }
    .ot-stage__text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* --- Guarantees 3 cards --- */
    .ot-guarantees-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .ot-guarantee-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 28px;
      text-align: center;
    }
    .ot-guarantee-card__icon {
      font-size: 44px;
      margin-bottom: 16px;
      display: block;
    }
    .ot-guarantee-card h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 10px;
    }
    .ot-guarantee-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* --- Reviews Grid --- */
    .ot-reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 32px;
    }
    .ot-review-card {
      background: var(--gray-bg);
      border-radius: 16px;
      padding: 24px;
    }
    .ot-review-card__header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }
    .ot-review-card__avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 18px;
      font-weight: 800;
      flex-shrink: 0;
    }
    .ot-review-card__name {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
    }
    .ot-review-card__date {
      font-size: 12px;
      color: var(--text-light);
      margin-top: 2px;
    }
    .ot-review-card__stars {
      color: #FFB400;
      font-size: 14px;
      margin-bottom: 10px;
    }
    .ot-review-card__text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .ot-reviews-ratings {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .ot-reviews-rating-badge {
      background: var(--gray-bg);
      border-radius: 14px;
      padding: 20px;
      text-align: center;
    }
    .ot-reviews-rating-badge__name {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 6px;
      font-weight: 600;
    }
    .ot-reviews-rating-badge__score {
      font-size: 28px;
      font-weight: 900;
      color: var(--text);
    }
    .ot-reviews-rating-badge__stars {
      color: #FFB400;
      font-size: 14px;
      margin: 2px 0;
    }
    .ot-reviews-rating-badge__count {
      font-size: 12px;
      color: var(--text-light);
    }

    /* --- FAQ Accordion --- */
    .ot-faq {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }
    .ot-faq-item {
      border-bottom: 1px solid var(--border);
    }
    .ot-faq-item:last-child { border-bottom: none; }
    .ot-faq-item input[type="checkbox"] { display: none; }
    .ot-faq-label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      background: var(--white);
      transition: background .2s;
      user-select: none;
    }
    .ot-faq-label:hover { background: #f8fafc; }
    .ot-faq-label::after {
      content: '+';
      font-size: 22px;
      font-weight: 400;
      color: var(--blue);
      flex-shrink: 0;
      margin-left: 16px;
      transition: transform .2s;
    }
    .ot-faq-item input:checked ~ .ot-faq-label::after {
      transform: rotate(45deg);
    }
    .ot-faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
      padding: 0 24px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      background: var(--white);
    }
    .ot-faq-item input:checked ~ .ot-faq-body {
      max-height: 400px;
      padding: 0 24px 20px;
    }

    /* --- Blog cards --- */
    .ot-blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .ot-blog-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: box-shadow .2s;
    }
    .ot-blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
    .ot-blog-card__img {
      width: 100%;
      height: 160px;
      background: linear-gradient(135deg, #d4e8f5 0%, #b8d8ef 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
    }
    .ot-blog-card__body { padding: 20px; }
    .ot-blog-card__title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
      line-height: 1.4;
      display: block;
      transition: color .2s;
    }
    .ot-blog-card__title:hover { color: var(--blue); }
    .ot-blog-card__excerpt {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .ot-blog-card__meta { font-size: 12px; color: var(--text-light); }

    /* --- Adaptive --- */
    @media (max-width: 960px) {
      .ot-hero__inner { grid-template-columns: 1fr; }
      .ot-hero__ratings { flex-direction: row; flex-wrap: wrap; }
      .ot-hero__h1 { font-size: 28px; }
      .ot-usp-grid { grid-template-columns: repeat(2, 1fr); }
      .ot-services-grid { grid-template-columns: repeat(2, 1fr); }
      .ot-montazh { grid-template-columns: 1fr; }
      .ot-montazh__card { display: none; }
      .ot-objects-grid { grid-template-columns: repeat(2, 1fr); }
      .ot-pricing-grid { grid-template-columns: repeat(2, 1fr); }
      .ot-consult { margin: 0 24px 60px; padding: 32px 24px; }
      .ot-consult-row { grid-template-columns: 1fr 1fr; }
      .ot-why-grid { grid-template-columns: repeat(2, 1fr); }
      .ot-importance-grid { grid-template-columns: 1fr; }
      .ot-guarantees-grid { grid-template-columns: repeat(2, 1fr); }
      .ot-reviews-grid { grid-template-columns: repeat(2, 1fr); }
      .ot-reviews-ratings { grid-template-columns: repeat(2, 1fr); }
      .ot-blog-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .ot-hero__h1 { font-size: 22px; }
      .ot-usp-grid { grid-template-columns: 1fr; }
      .ot-services-grid { grid-template-columns: 1fr; }
      .ot-objects-grid { grid-template-columns: repeat(2, 1fr); }
      .ot-pricing-grid { grid-template-columns: 1fr; }
      .ot-consult { margin: 0 16px 40px; padding: 28px 20px; }
      .ot-consult-row { grid-template-columns: 1fr; }
      .ot-why-grid { grid-template-columns: 1fr; }
      .ot-guarantees-grid { grid-template-columns: 1fr; }
      .ot-reviews-grid { grid-template-columns: 1fr; }
      .ot-reviews-ratings { grid-template-columns: repeat(2, 1fr); }
      .ot-blog-grid { grid-template-columns: 1fr; }
      .ot-stage { grid-template-columns: 48px 1fr; gap: 16px; }
    }

    /* --- Calculator --- */
    .ot-calc { background: var(--gray-bg); padding: 80px 0; }
    .ot-calc__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
    .ot-calc__title { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
    .ot-calc__sub { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
    .ot-calc__notice { background: rgba(27,147,212,.08); border-left: 3px solid var(--blue); border-radius: 0 6px 6px 0; padding: 10px 14px; font-size: 13px; color: var(--text); margin-bottom: 20px; }
    .ot-calc__notice strong { color: var(--blue); }
    .ot-calc__results { background: var(--navy); border-radius: var(--radius); padding: 24px; }
    .ot-calc__result-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .ot-calc__result-row:last-child { border-bottom: none; }
    .ot-calc__result-row label { font-size: 13px; color: rgba(255,255,255,.55); }
    .ot-calc__result-row span { font-size: 14px; font-weight: 700; color: var(--white); }
    .ot-calc__result-row--total label { color: rgba(255,255,255,.9); font-weight: 700; font-size: 14px; }
    .ot-calc__result-row--total span { color: var(--blue); font-size: 20px; }
    .ot-calc__installment { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 10px; text-align: center; }
    .ot-calc__form-wrap { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
    .ot-calc__fieldset { border: none; margin: 0 0 22px; padding: 0; }
    .ot-calc__legend { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 14px; display: block; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
    .ot-calc__field { margin-bottom: 14px; }
    .ot-calc__field > label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
    .ot-calc__field input[type="number"] { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 14px; font-family: inherit; outline: none; transition: border-color .2s; background: #fff; color: var(--text); }
    .ot-calc__field input:focus { border-color: var(--blue); }
    .ot-calc__pills { display: flex; gap: 8px; flex-wrap: wrap; }
    .ot-calc__pill { padding: 6px 14px; border: 1px solid var(--border); border-radius: 20px; font-size: 13px; cursor: pointer; color: var(--text); background: #fff; transition: all .2s; font-family: inherit; }
    .ot-calc__pill.active { background: var(--blue); border-color: var(--blue); color: #fff; }
    .ot-calc__yn { display: flex; gap: 8px; }
    .ot-calc__yn-btn { flex: 1; padding: 8px; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; cursor: pointer; color: var(--text); background: #fff; transition: all .2s; font-family: inherit; text-align: center; }
    .ot-calc__yn-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
    @media (max-width: 960px) { .ot-calc__wrap { grid-template-columns: 1fr; } }
    @media (max-width: 640px) { .ot-calc__pills { gap: 6px; } }
/* ================================================================
   PAGE TOC SIDEBAR
   ================================================================ */
.mv-toc {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mv-toc--visible {
  opacity: 1;
  pointer-events: auto;
}
.mv-toc__inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  max-height: 60vh;
  overflow-y: auto;
  min-width: 200px;
  max-width: 260px;
}
.mv-toc__link {
  display: block;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-light);
  text-decoration: none;
  border-left: 2px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: color .2s, border-color .2s, background .2s;
}
.mv-toc__link:hover {
  color: var(--blue);
  background: #f0f7ff;
}
.mv-toc__link--active {
  color: var(--blue);
  border-left-color: var(--blue);
  font-weight: 600;
}
@media (max-width: 1400px) {
  .mv-toc { display: none; }
}
