/* ===================================================
   MONTAZH SERVICE PAGE
   Clean engineering aesthetic with separator grids
   =================================================== */

/* --- Section spacing --- */
.section--white,
.section--gray {
  padding: 70px 0;
}
.section--gray {
  background: #f5f7fa;
}
.section__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 16px;
}
.section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

/* --- Hero (split layout: text left, visual right) --- */
.mv-hero {
  background: linear-gradient(165deg, #0a1628 0%, var(--navy) 40%, #132c4a 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.mv-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27,147,212,.12) 0%, transparent 70%);
  pointer-events: none;
}
.mv-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27,147,212,.06) 0%, transparent 70%);
  pointer-events: none;
}
.mv-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 48px;
  align-items: center;
}
.mv-hero__content {
  min-width: 0;
}
.mv-hero__h1 {
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.mv-hero__lead {
  max-width: 760px;
  margin: -8px 0 24px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.6;
}
.mv-hero__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mv-hero__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.55;
}
.mv-hero__list li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--blue) url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6L5 9L10 3' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.mv-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.mv-hero__ratings {
  display: flex;
  gap: 12px;
}
.mv-rating-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: background .2s;
}
.mv-rating-badge:hover {
  background: rgba(255,255,255,.12);
}
.mv-rating-badge__stars {
  color: #FFB400;
  font-size: 14px;
}

/* --- Hero Visual (right side) --- */
.mv-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.mv-hero__photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(27,147,212,.15);
}
.mv-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,.5) 100%);
  pointer-events: none;
}
.mv-hero__photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

/* Blueprint fallback decoration */
.mv-hero__blueprint {
  width: 100%;
  max-width: 400px;
  position: relative;
  opacity: .7;
  animation: mv-bp-fade 2s ease-out both;
}
@keyframes mv-bp-fade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: .7; transform: translateY(0); }
}
.mv-hero__bp-svg {
  width: 100%;
  height: auto;
}
.mv-hero__blueprint::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border: 1px dashed rgba(27,147,212,.12);
  border-radius: 50%;
  pointer-events: none;
}
.mv-hero__blueprint::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(27,147,212,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Stats --- */
.mv-stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.mv-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.mv-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.mv-stats__item + .mv-stats__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border);
}
.mv-stats__num {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
}
.mv-stats__label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- Section title (page-level) --- */
.section__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -.3px;
}

/* --- Service Types --- */
.mv-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.mv-type-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background .2s;
}
.mv-type-card:hover {
  background: #f0f7ff;
}
.mv-type-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(27,147,212,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.mv-type-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.mv-type-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Content Sections (SEO blocks) --- */
.mv-cs {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.mv-cs .container {
  position: relative;
  z-index: 1;
}
.mv-cs__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.mv-cs__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mv-cs__num {
  font-size: 52px;
  font-weight: 900;
  color: #6b8798;
  line-height: 1;
  letter-spacing: -3px;
  user-select: none;
}
.mv-cs__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.25;
  max-width: 700px;
}
.mv-cs__body {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  line-height: 1.8;
  color: var(--text);
  font-size: 15px;
  border: 1px solid var(--border);
}
.section--gray .mv-cs__body {
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
}
.mv-cs__body--accent {
  border-left: 4px solid var(--blue);
  background: #f4faff;
}
.mv-cs__body p {
  margin-bottom: 16px;
}
.mv-cs__body p:last-child {
  margin-bottom: 0;
}
.mv-cs__body ul,
.mv-cs__body ol {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}
.mv-cs__body ul li,
.mv-cs__body ol li {
  margin-bottom: 14px;
  line-height: 1.7;
  padding-left: 32px;
  position: relative;
}
.mv-cs__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: rgba(27,147,212,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231B93D4' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center;
  border-radius: 50%;
}
.mv-cs__body ol {
  counter-reset: cs-counter;
}
.mv-cs__body ol li {
  counter-increment: cs-counter;
}
.mv-cs__body ol li::before {
  content: counter(cs-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv-cs__body li strong {
  color: var(--navy);
  font-weight: 700;
}
.mv-cs__body table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  font-size: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.mv-cs__body table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
}
.mv-cs__body table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.mv-cs__body table tr:last-child td {
  border-bottom: none;
}
.mv-cs__body table tr:hover td {
  background: #f0f7ff;
}
.mv-cs__body blockquote {
  margin: 24px 0;
  padding: 24px 28px;
  background: #f4faff;
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  font-style: normal;
}
.mv-cs__body blockquote strong {
  color: var(--blue);
}
.mv-cs__body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin: 32px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  line-height: 1.4;
}
.mv-cs__body h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.mv-cs__body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 8px;
}
.mv-cs__body em {
  font-style: italic;
  color: var(--text-muted);
}
.mv-cs__body strong {
  color: var(--navy);
}
.mv-cs__deco {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,147,212,.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* --- Calculator --- */
.mv-calc {
  background: var(--gray-bg);
  padding: 70px 0;
}
.mv-calc .container > h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 32px;
}
.mv-calc__wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.mv-calc__result {
  background: linear-gradient(160deg, var(--navy) 0%, #162d4a 100%);
  padding: 36px 32px;
  position: sticky;
  top: 100px;
  border-radius: 20px 0 0 20px;
}
.mv-calc__result-label {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}
.mv-calc__result-value {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.mv-calc__result-note {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
  margin-bottom: 24px;
}
.mv-calc__result .btn {
  width: 100%;
  text-align: center;
  display: block;
  justify-content: center;
}
.mv-calc__form {
  background: var(--white);
  padding: 32px;
  border-radius: 0 20px 20px 0;
}
.mv-calc__field {
  margin-bottom: 20px;
}
.mv-calc__field:last-child {
  margin-bottom: 0;
}
.mv-calc__field > label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.mv-calc__field input[type="number"],
.mv-calc__field select {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  background: var(--white);
  color: var(--text);
}
.mv-calc__field input:focus,
.mv-calc__field select:focus {
  border-color: var(--blue);
}
.mv-calc__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mv-calc__pill {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  cursor: pointer;
  color: var(--text-muted);
  background: var(--white);
  transition: all .2s;
  font-family: inherit;
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.mv-calc__pill:hover {
  border-color: var(--navy);
  color: var(--text);
}
.mv-calc__pill.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.mv-calc__toggles {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.mv-calc__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  padding: 6px 0;
}
.mv-calc__toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

/* --- Price Table --- */
.mv-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 32px;
}
.mv-price-table th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 700;
}
.mv-price-table th:last-child {
  text-align: right;
}
.mv-price-table .mv-price-group td {
  background: var(--gray-bg);
  font-weight: 700;
  color: var(--navy);
  padding: 12px 24px;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.mv-price-table td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
  background: var(--white);
  transition: background .2s;
}
.mv-price-table tr:last-child td {
  border-bottom: none;
}
.mv-price-table .mv-price-val {
  text-align: right;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}
.mv-price-table tr:not(.mv-price-group):hover td {
  background: #f0f7ff;
}

/* --- Videos --- */
.mv-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.mv-video-item {
  background: var(--navy);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: background .2s;
}
.mv-video-item:hover {
  background: #162d4a;
}
.mv-video-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
}
.mv-video-play {
  width: 64px;
  height: 64px;
  background: rgba(27,147,212,.2);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  position: relative;
  z-index: 1;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(4px);
}
.mv-video-item:hover .mv-video-play {
  background: rgba(27,147,212,.4);
  transform: scale(1.08);
}
.mv-video-caption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  z-index: 1;
}

/* --- Case Cards (white override for montazh) --- */
section .case-card {
  background: var(--white);
  border: 1px solid var(--border);
}
section .case-card:hover {
  background: #f0f7ff;
}
section .case-card__title {
  color: var(--navy);
  padding: 18px 22px 6px;
}
section .case-card__title a {
  color: inherit;
  text-decoration: none;
}
section .case-card__title a:hover {
  color: var(--blue);
}
section .case-card__excerpt {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  padding: 0 22px;
}
section .case-card__link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 22px 22px;
  display: block;
}
section .case-card__link:hover {
  text-decoration: underline;
}

/* --- Object Types --- */
.mv-objects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.mv-object-item {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  transition: background .2s;
}
.mv-object-item:hover {
  background: #f0f7ff;
}
.mv-object-item__icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}
.mv-object-item__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* --- Stages (separator grid) --- */
.mv-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.mv-stage {
  background: var(--white);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}
.mv-stage:last-child:nth-child(3n - 1) {
  grid-column: span 2;
}
.mv-stage:last-child:nth-child(3n - 2) {
  grid-column: span 3;
}
.mv-stage:hover {
  background: #f0f7ff;
}
.mv-stage__num {
  position: absolute;
  right: 12px;
  bottom: -16px;
  font-size: 100px;
  font-weight: 900;
  color: rgba(27,147,212,.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.mv-stage__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.mv-stage__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* --- Features (separator grid) --- */
.mv-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.mv-feature-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background .2s;
}
.mv-feature-card:hover {
  background: #f0f7ff;
}
.mv-feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(27,147,212,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
}
.mv-feature-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.mv-feature-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Expert Quote --- */
.mv-expert {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.mv-expert__quote-mark {
  position: absolute;
  top: -24px;
  left: -12px;
  font-size: 120px;
  line-height: 1;
  color: var(--blue);
  opacity: .08;
  font-family: Georgia, serif;
  pointer-events: none;
  z-index: 0;
}
.mv-expert__body {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin: 0;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  position: relative;
  z-index: 1;
}
.mv-expert__text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.mv-expert__footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mv-expert__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue);
}
.mv-expert__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}
.mv-expert__name {
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  display: block;
}
.mv-expert__role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --- Projects carousel --- */
.mv-projects__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mv-projects__header .section__title {
  margin-bottom: 0;
}
.mv-projects__nav {
  display: flex;
  gap: 8px;
}
.mv-projects__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.mv-projects__btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.mv-projects__track-wrap {
  overflow: hidden;
  border-radius: 18px;
}
.mv-projects__track {
  display: flex;
  gap: 16px;
  transition: transform .4s ease;
}
.mv-projects__track .project-card {
  min-width: calc(50% - 8px);
  flex-shrink: 0;
}
.project-card {
  background: #1a2d40;
  border-radius: 18px;
  overflow: hidden;
}
.project-card__img {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.project-card__img a { display: block; height: 100%; }
.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.project-card:hover .project-card__img img {
  transform: scale(1.05);
}
.project-card__body {
  padding: 20px 24px 28px;
}
.project-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.4;
}
.project-card__title a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,.3);
}
.project-card__title a:hover {
  text-decoration-color: var(--white);
}
.project-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.project-card__meta-link {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
}
.project-card__meta-link:hover {
  color: rgba(255,255,255,.8);
}
.project-card__text {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}

/* --- Norms / SEO text --- */
.seo-text {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  line-height: 1.8;
  font-size: 15px;
  color: var(--text);
  border: 1px solid var(--border);
  margin-top: 24px;
  max-width: none;
}
.seo-text p {
  margin-bottom: 16px;
}
.seo-text p:last-child {
  margin-bottom: 0;
}

/* --- Info Table (zebra + highlight) --- */
.mv-info-table-wrap {
  overflow-x: auto;
  margin-top: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.mv-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.mv-info-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
}
.mv-info-table td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.55;
  background: var(--white);
  vertical-align: top;
  transition: background .2s;
}
.mv-info-table td:first-child {
  font-weight: 700;
  color: var(--navy);
}
.mv-info-table tr:nth-child(even) td {
  background: #f9fafb;
}
.mv-info-table tr:last-child td {
  border-bottom: none;
}
.mv-info-table tr:hover td {
  background: #f0f7ff;
}

/* --- How We Work --- */
.mv-howwork-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mv-howwork-col {
  background: var(--white);
  padding: 32px 28px;
}
.mv-howwork-col h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.mv-howwork-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mv-howwork-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  padding: 10px 14px;
  background: var(--gray-bg);
  border-radius: 10px;
  transition: background .2s;
}
.mv-howwork-list li:hover {
  background: #e6eef8;
}
.mv-howwork-list li::before {
  content: '\2192';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- Price Factors (separator grid) --- */
.mv-factors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.mv-factor-card {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  transition: background .2s;
}
.mv-factor-card:hover {
  background: #f0f7ff;
}
.mv-factor-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  color: var(--blue);
}
.mv-factor-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* --- Advantages (separator grid, horizontal layout) --- */
.mv-adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mv-adv-card {
  background: var(--white);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background .2s;
}
.mv-adv-card:hover {
  background: #f0f7ff;
}
.mv-adv-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(27,147,212,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.mv-adv-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.mv-adv-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Licenses --- */
.mv-lic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}
.mv-lic-badge {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  transition: background .2s;
}
.mv-lic-badge:hover {
  background: #f0f7ff;
}
.mv-lic-badge__icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
  color: var(--blue);
}
.mv-lic-badge__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.mv-lic-badge__sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Reviews --- */
.mv-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.mv-review-card {
  background: var(--white);
  padding: 28px 32px;
  transition: background .2s;
}
.mv-review-card:hover {
  background: #f0f7ff;
}
.mv-review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.mv-review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.mv-review-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.mv-review-card__date {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}
.mv-review-card__stars {
  color: #FFB400;
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.mv-review-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.mv-ratings-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mv-rating-pill {
  background: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background .2s;
}
.mv-rating-pill:hover {
  background: #f0f7ff;
}
.mv-rating-pill__platform {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.mv-rating-pill__score {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue);
}
.mv-rating-pill__stars {
  color: #FFB400;
  font-size: 14px;
}
.mv-rating-pill__count {
  font-size: 12px;
  color: var(--text-light);
}

/* --- Reviews Carousel --- */
.reviews-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.reviews-carousel-header .section__title {
  margin-bottom: 0;
}
.reviews-carousel-nav {
  display: flex;
  gap: 8px;
}
.reviews-carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text);
  transition: border-color .2s, color .2s, background .2s;
}
.reviews-carousel__btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #f0f7ff;
}
.reviews-carousel {
  overflow: hidden;
  position: relative;
}
.reviews-carousel__track {
  display: flex;
  gap: 16px;
  transition: transform .4s cubic-bezier(.25,.8,.25,1);
}
.reviews-carousel .review-card {
  flex: 0 0 calc(50% - 8px);
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: box-shadow .2s;
}
.reviews-carousel .review-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.reviews-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.reviews-carousel__dot {
	position: relative;
	width: 32px;
	height: 32px;
  border-radius: 50%;
  border: none;
	background: transparent;
  cursor: pointer;
  padding: 0;
	transition: background .2s;
}
.reviews-carousel__dot::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--border);
	content: '';
	transform: translate(-50%, -50%);
	transition: background .2s, transform .2s;
}
.reviews-carousel__dot--active::before {
	background: var(--blue);
	transform: translate(-50%, -50%) scale(1.2);
}

/* --- Letter Cards (Благодарственные письма) --- */
.reviews-carousel--letters .letter-card {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.reviews-carousel--letters .letter-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}
.letter-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f0f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.letter-card__company {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.letter-card__service {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.4;
}
.letter-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 16px;
}
.letter-card__date {
  font-size: 12px;
  color: var(--text-light);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .reviews-carousel--letters .letter-card {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 768px) {
  .reviews-carousel .review-card,
  .reviews-carousel--letters .letter-card {
    flex: 0 0 100%;
  }
  .reviews-carousel-header {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* --- Service Tags Cloud --- */
.mv-tags-cloud {
  padding: 32px 0;
}
.mv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.mv-tag {
  display: inline-block;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-muted);
  transition: background .2s, border-color .2s, color .2s;
  cursor: default;
}
.mv-tag:hover {
  background: #f0f7ff;
  border-color: var(--blue);
  color: var(--blue);
}

/* --- 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; }
}

/* --- Letter Card open hint --- */
.letter-card { cursor: pointer; position: relative; }
.letter-card::after {
  content: 'Читать →';
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  opacity: 0;
  transition: opacity .2s;
}
.letter-card:hover::after { opacity: 1; }

/* --- Letter Modal --- */
.letter-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.letter-modal--open {
  opacity: 1;
  pointer-events: auto;
}
.letter-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}
.letter-modal__body {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 40px 44px;
  max-width: 560px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.15);
  transform: translateY(20px);
  transition: transform .3s;
}
.letter-modal--open .letter-modal__body {
  transform: translateY(0);
}
.letter-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: none;
  background: none;
  font-size: 28px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.letter-modal__close:hover {
  color: var(--text);
}
.letter-modal__icon {
  margin-bottom: 20px;
}
.letter-modal__company {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.letter-modal__service {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.letter-modal__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.letter-modal__date {
  font-size: 13px;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* --- FAQ (separator grid) --- */
.mv-faq {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mv-faq-item {
  background: var(--white);
  transition: background .2s;
}
.mv-faq-item:hover {
  background: #f8faff;
}
.mv-faq-item.is-open {
  background: var(--white);
}
.mv-faq-item__q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 28px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
  font-family: inherit;
  transition: color .2s;
  min-height: 44px;
}
.mv-faq-item__q:hover {
  color: var(--blue);
}
.mv-faq-item__arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gray-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 700;
  transition: transform .3s, background .2s, color .2s;
}
.mv-faq-item.is-open .mv-faq-item__arrow {
  transform: rotate(45deg);
  background: var(--blue);
  color: var(--white);
}
.mv-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mv-faq-item.is-open .mv-faq-item__a {
  max-height: 600px;
}
.mv-faq-item__a-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* --- Blog Cards (separator grid) --- */
.mv-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mv-blog-card {
  background: var(--white);
  overflow: hidden;
  transition: background .2s;
}
.mv-blog-card:hover {
  background: #f0f7ff;
}
.mv-blog-card__img {
  height: 200px;
  overflow: hidden;
}
.mv-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.mv-blog-card:hover .mv-blog-card__img img {
  transform: scale(1.05);
}
.mv-blog-card__body {
  padding: 22px 24px 28px;
}
.mv-blog-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.45;
  display: block;
  text-decoration: none;
  transition: color .2s;
}
.mv-blog-card__title:hover {
  color: var(--blue);
}
.mv-blog-card__excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- CTA Form (split layout) --- */
.mv-form-wrap {
  background: linear-gradient(135deg, #0d1e35 0%, #0a3d5e 55%, #0a5a85 100%);
  border-radius: 28px;
  padding: 60px;
  margin: 0 40px 60px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: start;
}
.mv-form-wrap::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border: 2px dashed rgba(27,147,212,.3);
  border-radius: 50%;
  pointer-events: none;
}
.mv-form-wrap::after {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 560px;
  height: 560px;
  border: 2px dashed rgba(27,147,212,.15);
  border-radius: 50%;
  pointer-events: none;
}
.mv-form-wrap__left {
  position: relative;
  z-index: 1;
}
.mv-form-wrap__title {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.mv-form-wrap__sub {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.mv-form-wrap__contacts {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.mv-form-wrap__contacts a {
  color: var(--blue);
  font-weight: 700;
}
.mv-form-wrap form {
  position: relative;
  z-index: 1;
}
.mv-form-wrap input[type="text"],
.mv-form-wrap input[type="tel"],
.mv-form-wrap input[type="email"],
.mv-form-wrap textarea {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.mv-form-wrap input:focus,
.mv-form-wrap textarea:focus {
  border-color: var(--blue);
}
.mv-form-wrap input::placeholder,
.mv-form-wrap textarea::placeholder {
  color: rgba(255,255,255,.3);
}
.gf-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.gf-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.mv-form-wrap__benefits {
  position: relative;
  z-index: 1;
  align-self: center;
}
.mv-form-wrap__benefits h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}
.mv-form-wrap__benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mv-form-wrap__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.mv-form-wrap__benefits li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: rgba(27,147,212,.3) url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6L5 9L10 3' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- Responsive: 960px --- */
@media (max-width: 960px) {
  .mv-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .mv-hero__h1 {
    font-size: 36px;
  }
  .mv-hero__visual {
    min-height: 240px;
    max-width: 480px;
    margin: 0 auto;
  }
  .mv-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }
  .mv-stats__item + .mv-stats__item::before {
    display: none;
  }
  .mv-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-projects__track .project-card {
    min-width: 100%;
  }
  .mv-calc__wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mv-calc__result {
    position: static;
    border-radius: 20px 20px 0 0;
  }
  .mv-calc__form {
    border-radius: 0 0 20px 20px;
  }
  .mv-videos {
    grid-template-columns: 1fr;
  }
  .mv-objects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-stages {
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-features-grid {
    grid-template-columns: 1fr;
  }
  .mv-howwork-grid {
    grid-template-columns: 1fr;
  }
  .mv-factors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-adv-grid {
    grid-template-columns: 1fr;
  }
  .mv-lic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-reviews-grid {
    grid-template-columns: 1fr;
  }
  .mv-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-ratings-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-form-wrap {
    margin: 0 24px 60px;
    padding: 40px 32px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gf-row3 {
    grid-template-columns: 1fr 1fr;
  }
  .mv-expert__body {
    padding: 32px 28px;
  }
  .section__title {
    font-size: 26px;
  }
}

/* --- Responsive: 640px --- */
@media (max-width: 640px) {
  .mv-hero {
    padding: 48px 0 56px;
  }
  .mv-hero__h1 {
    font-size: 28px;
  }
  .mv-hero__lead {
    margin: -10px 0 20px;
    font-size: 16px;
    line-height: 1.5;
  }
  .mv-hero__list {
    margin-bottom: 28px;
    gap: 12px;
  }
  .mv-hero__list li:nth-child(n+3) {
    display: none;
  }
  .mv-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .mv-hero__ratings {
    flex-wrap: wrap;
  }
  .mv-hero__visual {
    min-height: 200px;
    max-width: 360px;
  }
  .mv-hero__blueprint {
    max-width: 300px;
  }
  .mv-stats {
    padding: 28px 0;
  }
  .mv-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }
  .mv-stats__num {
    font-size: 26px;
  }
  .mv-stats__label {
    font-size: 13px;
  }
  .mv-types-grid {
    grid-template-columns: 1fr;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .mv-calc {
    padding: 48px 0;
  }
  .mv-calc__pills {
    gap: 6px;
  }
  .mv-calc__form {
    padding: 24px 20px;
  }
  .mv-calc__result {
    padding: 24px 20px;
  }
  .mv-stages {
    grid-template-columns: 1fr;
  }
  .mv-objects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-factors-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mv-adv-grid {
    grid-template-columns: 1fr;
  }
  .mv-lic-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mv-blog-grid {
    grid-template-columns: 1fr;
  }
  .mv-ratings-row {
    grid-template-columns: 1fr;
  }
  .mv-form-wrap {
    margin: 0 16px 40px;
    padding: 36px 24px;
    grid-template-columns: 1fr;
  }
  .mv-form-wrap__title {
    font-size: 24px;
  }
  .gf-row3 {
    grid-template-columns: 1fr;
  }
  .gf-row2 {
    grid-template-columns: 1fr;
  }
  .section__title {
    font-size: 22px;
  }
  .mv-cs {
    padding: 48px 0;
  }
  .mv-cs__body {
    padding: 24px 20px;
  }
  .mv-cs__title {
    font-size: 22px;
  }
  .mv-cs__icon {
    width: 44px;
    height: 44px;
  }
  .mv-cs__icon svg {
    width: 22px;
    height: 22px;
  }
  .mv-cs__num {
    font-size: 40px;
  }
  .mv-expert__body {
    padding: 28px 24px;
    border-radius: 18px;
  }
  .mv-expert__text {
    font-size: 15px;
  }
  .mv-feature-card {
    padding: 24px 20px;
  }
  .mv-adv-card {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== Letter Cards Grid (reused from otzyvy) ===== */
.ot-letters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ot-letter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow .2s;
  position: relative;
}
.ot-letter-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}
.ot-letter-card::after {
  content: 'Читать →';
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  opacity: 0;
  transition: opacity .2s;
}
.ot-letter-card:hover::after { opacity: 1; }
.ot-letter-card__doc {
  width: 64px;
  height: 80px;
  background: var(--gray-bg);
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid var(--border);
}
.ot-letter-card__doc::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: var(--border);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.ot-letter-card__from {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ot-letter-card__service {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.5;
}
.ot-letter-card__excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.ot-letter-card__date {
  font-size: 12px;
  color: var(--text-light);
}
@media (max-width: 960px) {
  .ot-letters-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ot-letters-grid { grid-template-columns: 1fr; }
}
