:root {
  --bg: #f4f6f8;
  --text: #101419;
  --white: #fff;
  --dark: #132027;
  --red: #ff2430;
  --green: #2e7d6d;
  --mint: #35bf85;
  --muted: #496577;
  --border: #d8dee5;
  --gold: #b2762d;
  --pro: #024a3c;
  --adv-dark: #175146;
  --process-dark: #15292a;
  --shadow: 4px 4px 10px rgba(46, 125, 109, 0.1), -4px -4px 10px rgba(46, 125, 109, 0.1);
  --container: 1280px;
  --pad: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Onest, system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.35;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
ul,
blockquote,
figure {
  margin: 0;
}

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.accent {
  color: var(--red);
}

.green {
  color: var(--green);
}

.mint {
  color: var(--mint);
}

.muted {
  color: var(--muted);
}

.icon-invert {
  filter: brightness(0) invert(1);
  width: 28px;
  height: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--red);
  color: var(--white);
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 4px 4px 16px rgba(255, 36, 48, 0.25);
}

.btn--sm {
  padding: 12px 16px;
}

.btn--lg {
  padding: 24px;
  gap: 32px;
  font-size: 18px;
  font-weight: 600;
  @media screen and (max-width: 761px) {
    padding: 20px;
    gap: 24px;
    font-size: 16px;
  }
}

.btn--center {
  display: flex;
  width: fit-content;
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 78px;
  min-height: 95px;
}

.header__logo img {
  width: 290px;
  height: 31px;
}

.header__nav {
  display: flex;
  gap: 38px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.header__nav a:hover {
  color: var(--green);
}

.header__contacts {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

.header__phone {
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.header__tg img {
  width: 30px;
  height: 30px;
}

.header__line {
  height: 1px;
  background: var(--border);
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.header__burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  padding: 8px;
  cursor: pointer;
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
}

.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  padding: 44px 0 80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 534px 1fr;
  gap: 49px;
  align-items: center;
}

.hero h1 {
  font-family: Unbounded, sans-serif;
  font-weight: 600;
  font-size: 38px;
  line-height: 1.2;
}

.hero__lead {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 44px 0;
  max-width: 483px;
}

.hero__lead-thin {
  font-weight: 100;
  font-size: 20px;
}

.hero__lead p:last-child {
  font-size: 16px;
}

/* CRM mock */
.crm {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  min-height: 578px;
  overflow: hidden;
  user-select: none;
}

.crm button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.crm__rail {
  width: 50px;
  border-right: 1px solid var(--border);
  padding: 19px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.crm__rail-btn {
  width: 34px;
  height: 34px;
  background: rgba(46, 125, 109, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.crm__rail-btn:hover {
  background: rgba(46, 125, 109, 0.22);
  transform: translateY(-1px);
}

.crm__rail-btn.is-active {
  background: var(--green);
}

.crm__rail-btn span {
  width: 4px;
  height: 4px;
  background: var(--muted);
  border-radius: 50%;
}

.crm__rail-btn.is-active span {
  background: var(--white);
}

.crm__rail-dots {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.crm__rail-dots button {
  width: 14px;
  height: 14px;
  border: 1px solid var(--muted) !important;
  border-radius: 3px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.crm__rail-dots button:hover,
.crm__rail-dots button.is-active {
  background: rgba(46, 125, 109, 0.15);
  border-color: var(--green) !important;
}

.crm__body {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 260px;
  column-gap: 16px;
  padding: 30px 15px;
  flex: 1;
  min-width: 0;
}

.crm__leads {
  min-width: 0;
}

.crm__leads-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.crm__leads-head strong {
  font-size: 22px;
  font-weight: 700;
}

.crm__filters {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
}

.crm__filter,
.crm__more {
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 1.2;
  color: #8a97a3;
  background: var(--white);
  border: 1px solid #d8dee5 !important;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.crm__filter:hover,
.crm__more:hover {
  border-color: var(--green) !important;
  color: var(--green);
  background: rgba(46, 125, 109, 0.06);
}

.crm__filter.is-active {
  background: rgba(46, 125, 109, 0.1);
  border-color: rgba(46, 125, 109, 0.35) !important;
  color: var(--green);
}

.crm__more {
  min-width: 32px;
  padding: 8px 10px;
  line-height: 1;
  letter-spacing: 1.5px;
}

.crm__list {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.crm__row {
  display: grid;
  grid-template-columns: 18px 18px minmax(0, 1fr) 18px 22px;
  align-items: center;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border) !important;
  border-radius: 0;
  min-height: 48px;
  text-align: left;
  transition: background 0.15s ease;
}

.crm__row:last-child {
  border-bottom: 0 !important;
}

.crm__row:hover {
  background: rgba(46, 125, 109, 0.08);
}

.crm__row.is-active {
  background: rgba(46, 125, 109, 0.12);
}

.crm__check {
  width: 18px;
  height: 18px;
  border: 1.5px solid #c5ced6;
  border-radius: 4px;
  background: var(--white);
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.crm__row:hover .crm__check {
  border-color: var(--green);
}

.crm__row.is-checked .crm__check {
  background: var(--green);
  border-color: var(--green);
}

.crm__row.is-checked .crm__check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.crm__ava {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(216, 222, 229, 0.5);
}

.crm__badge {
  font-size: 10px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 5px;
  justify-self: start;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm__badge--work {
  background: rgba(73, 101, 119, 0.1);
  color: var(--muted);
}

.crm__badge--new {
  background: rgba(178, 118, 45, 0.12);
  color: var(--gold);
}

.crm__badge--reject {
  background: rgba(255, 36, 48, 0.1);
  color: var(--red);
}

.crm__badge--empty {
  background: rgba(73, 101, 119, 0.1);
  color: var(--muted);
}

.crm__radio {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.crm__row:hover .crm__radio,
.crm__row.is-active .crm__radio {
  border-color: var(--green);
}

.crm__init {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #c5ced6;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  color: #7a8894;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.crm__row:hover .crm__init,
.crm__row.is-active .crm__init {
  border-color: var(--green);
  color: var(--green);
}

.crm__side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 260px;
}

.crm__card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  background: var(--white);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.crm__card:hover {
  border-color: rgba(46, 125, 109, 0.35);
  box-shadow: 0 4px 16px rgba(46, 125, 109, 0.08);
}

.crm__card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 16px;
}

.crm__close {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  opacity: 0.6;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.crm__close:hover {
  opacity: 1;
  background: rgba(73, 101, 119, 0.08);
}

.crm__meta,
.crm__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: #6b7782;
}

.crm__meta-row,
.crm__fields > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.crm__fields i {
  width: 60px;
  height: 10px;
  background: rgba(216, 222, 229, 0.5);
  border-radius: 3px;
  flex-shrink: 0;
}

.crm__reco {
  margin: 16px 0;
  padding: 14px 12px;
  background: rgba(46, 125, 109, 0.12);
  border: 1px solid rgba(46, 125, 109, 0.15);
  border-radius: 8px;
}

.crm__reco small,
.crm__reco span {
  display: block;
  color: var(--green);
  font-size: 10px;
  font-weight: 500;
}

.crm__reco b {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin: 2px 0 4px;
}

.crm__card--opts > strong {
  display: block;
  margin-bottom: 4px;
}

.crm__card--opts ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.crm__card--opts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #6b7782;
  margin-bottom: 14px;
}

.crm__card--opts li:last-child {
  margin-bottom: 0;
}

.crm__card--opts em {
  font-style: normal;
  color: var(--green);
  background: rgba(46, 125, 109, 0.08);
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 10px;
  white-space: nowrap;
}

.crm__unique {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--green);
  font-size: 12px;
}

.crm.is-details-hidden .crm__card--details {
  opacity: 0.35;
  pointer-events: none;
}

/* Leadgen — Figma 1440 layout */
.leadgen {
  background: var(--bg);
  overflow: clip;
}

.leadgen__row {
  position: relative;
  height: clamp(520px, 42.36vw, 610px);
  overflow: hidden;
}

.leadgen__row--check {
  height: clamp(520px, 41.67vw, 600px);
}

.leadgen__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 58%;
  background-size: cover;
  background-repeat: no-repeat;
}

.leadgen__row--find .leadgen__bg,
.leadgen__row--pick .leadgen__bg {
  right: 0;
  /* Bias to the subject; slight top bias so heads stay in frame */
  background-position: 72% 22%;
  /* Fade the photo itself into the copy side — kills the hard curtain/wall edge */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 26%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 26%, #000 100%);
}

.leadgen__row--check .leadgen__bg {
  left: 0;
  background-position: 32% 24%;
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 26%, #000 100%);
  mask-image: linear-gradient(to left, transparent 0%, #000 26%, #000 100%);
}

.leadgen__veil {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  /* %-only so the wash tracks the photo at any width (no 994px cap) */
  width: 62%;
}

.leadgen__row--find .leadgen__veil,
.leadgen__row--pick .leadgen__veil {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(244, 246, 248, 1) 58%,
    rgba(244, 246, 248, 0.82) 78%,
    rgba(244, 246, 248, 0) 100%
  );
}

.leadgen__row--check .leadgen__veil {
  right: 0;
  background: linear-gradient(
    -90deg,
    rgba(244, 246, 248, 1) 58%,
    rgba(244, 246, 248, 0.82) 78%,
    rgba(244, 246, 248, 0) 100%
  );
}

.leadgen__inner {
  position: relative;
  z-index: 2;
  width: min(1440px, 100%);
  height: 100%;
  margin: 0 auto;
}

.leadgen__title {
  position: absolute;
  top: 3.93%;
  left: 5.56%;
  width: 48.6%;
  font-family: Unbounded, sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.06vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.leadgen__copy {
  position: absolute;
}

.leadgen__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.leadgen__label img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.leadgen__label span {
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 800;
  line-height: 1.1;
}

.leadgen__copy p {
  font-size: clamp(18px, 1.67vw, 24px);
  font-weight: 400;
  line-height: 1.35;
}

.leadgen__proof {
  --tilt: 0deg;
  --tilt-shift: 0deg;
  position: absolute;
  border-radius: 15px;
  box-shadow:
    2px 2px 65px rgba(73, 101, 119, 0.15),
    -2px -2px 64px rgba(73, 101, 119, 0.15);
  max-width: none;
  height: auto;
  pointer-events: none;
  transform: rotate(calc(var(--tilt) + var(--tilt-shift)));
  transform-origin: center center;
  will-change: transform;
}

/* Row 1 — Находит */
.leadgen__row--find .leadgen__copy {
  top: 47.2%;
  left: 5.56%;
  width: 25.4%;
  max-width: 366px;
  @media screen and (max-width: 761px){
    width: unset;
  }
}

.leadgen__proof--search {
  top: 38.4%;
  left: 34.32%;
  width: 33.86%;
  max-width: 445px;
  --tilt: -9.5deg;
}

/* Row 2 — Проверяет */
.leadgen__row--check .leadgen__copy {
  top: 7.3%;
  left: 53.06%;
  width: 36%;
  max-width: 520px;
  @media screen and (max-width: 761px){
    width: unset;
  }
}

.leadgen__proof--reviews {
  top: 42%;
  left: 39.08%;
  width: 57.15%;
  max-width: 750px;
  --tilt: -2.5deg;
}

/* Row 3 — Выбирает */
.leadgen__row--pick .leadgen__copy {
  top: 7.7%;
  left: 5.56%;
  width: 47.15%;
  max-width: 679px;
  @media screen and (max-width: 761px){
    width: unset;
  }
}

.leadgen__proof--lawyers {
  top: 40%;
  left: 5.56%;
  width: 48.82%;
  max-width: 703px;
  --tilt: 2deg;
}

.leadgen__bottom {
  background: var(--white);
  padding: 40px 0 48px;
}

.leadgen__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.leadgen__stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
}

.leadgen__stat + .leadgen__stat {
  border-left: 1px solid var(--border);
}

.leadgen__stat img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.leadgen__stat p {
  font-size: clamp(16px, 1.53vw, 22px);
  font-weight: 700;
  line-height: 1.3;
}

/* Process */
.process {
  padding-bottom: 80px;
}

.process__hero {
  position: relative;
  min-height: 484px;
  background: #0a0e12;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.process__hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  /* Figma: photo x=415 on 1440, overlaps dark panel (w=450) */
  left: 28.82%;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.process__hero-photo::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(200px, 28%);
  background: linear-gradient(
    90deg,
    #0a0e12 0%,
    rgba(10, 14, 18, 0.92) 35%,
    rgba(10, 14, 18, 0.4) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.process__hero .container {
  position: relative;
  z-index: 1;
}

.process__hero h2 {
  font-family: Unbounded, sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 1.25;
  max-width: 900px;
  padding: 60px 0;
}

.process__h-white {
  color: var(--white);
}

.process__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: -20px;
  position: relative;
}

.process__card {
  background: var(--white);
  border-radius: 15px;
  padding: 44px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  @media screen and (max-width: 761px){
    padding: 15px;
  }
}

.process__card--launch {
  grid-template-columns: 200px 1fr;
  align-items: stretch;
  gap: 24px;
}

.process__card--dark {
  background: var(--process-dark);
  color: var(--white);
  grid-template-columns: 220px 1fr;
  align-items: stretch;
  gap: 24px;
}

.process__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #5b6b7a;
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.process__num--sm {
  width: 38px;
  height: 38px;
  font-size: 16px;
}

.process__num--green {
  background: var(--green);
}

.process__num--mint {
  background: var(--mint);
  color: var(--process-dark);
}

.process__step {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.process__step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  min-height: 56px;
}

.process__step h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
}

.process__visual {
  height: 215px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  margin-bottom: 20px;
  background: transparent;
}

.process__step p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.process__chain {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 215px;
  margin-bottom: 20px;
}

.process__brand {
  flex: 1;
  min-width: 0;
  background: #f3f4f5;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #5b6b7a;
  padding: 20px 12px;
  box-shadow: 0 8px 24px rgba(73, 101, 119, 0.08);
}

.process__brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.process__brand--partner {
  color: #00b129;
  font-family: Ubuntu, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.process__brand--partner img {
  width: 72px;
  height: 48px;
}

.process__chain-icon {
  transform: rotate(45deg);
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  align-self: center;
  margin: 0 -6px;
  z-index: 1;
  object-fit: contain;
}

.process__launch-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 8px;
}

.process__launch-title h3 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.process__launch-title > .process__days,
.process__days {
  display: block;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 12px 0 16px;
}

.process__launch-title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
  color: var(--muted);
}

.process__launch-title p b {
  color: inherit;
  font-weight: 700;
}

.process__card--dark .process__launch-title p {
  color: rgba(255, 255, 255, 0.72);
}

.process__card--dark .process__launch-title p b {
  color: var(--white);
}

.process__launch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process__mini {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  border-radius: 20px;
  background: #fbfbfb;
}

.process__mini--ok {
  background: #e7f3ef;
}

.process__mini-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(91, 107, 122, 0.1);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.process__mini-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.process__mini-icon img.is-muted {
  filter: grayscale(1) brightness(0.55);
}

.process__mini--ok .process__mini-icon {
  background: rgba(46, 125, 109, 0.14);
}

.process__mini-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.process__badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.process__badge--red {
  background: var(--red);
}

.process__badge--green {
  background: var(--green);
}

.process__badge--mint {
  background: var(--mint);
  color: var(--process-dark);
}

.process__mini-meta small {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--muted);
  line-height: 1.25;
}

.process__mini b {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.process__mini--ok b {
  color: var(--green);
}

.process__mini p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--muted);
  margin-top: 8px;
}

.process__scale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process__scale-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px 20px;
  min-height: 277px;
}

.process__scale-card .process__mini-icon {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}

.process__scale-card .process__mini-icon img.is-light {
  filter: brightness(0) invert(1);
}

.process__scale-card .process__mini-meta {
  margin-bottom: 16px;
}

.process__scale-card .process__mini-meta small {
  color: var(--mint);
  font-weight: 600;
}

.process__scale-card b {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.process__scale-card--result {
  justify-content: space-between;
}

.process__scale-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.process__scale-head > img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}

.process__scale-head span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.process__scale-head strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 4px;
}

.process__check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.process__check img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.process__plan {
  background: var(--text);
  color: var(--white);
  border-radius: 15px;
  padding: 24px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  @media screen and (max-width: 761px){
    padding: 15px;
  }
}

.process__plan-copy {
  display: flex;
  align-items: center;
  gap: 16px;
}

.process__plan-copy small {
  display: block;
  color: var(--mint);
  text-transform: uppercase;
  font-size: 16px;
}

.process__plan-copy strong {
  font-size: 26px;
}

/* Why */
.why__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 44px;
}

.why h2,
.adv h2,
.packages h2,
.cases h2,
.reviews h2,
.faq h2,
.contact h2 {
  font-family: Unbounded, sans-serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.2;
}

.why__head p {
  max-width: 332px;
  color: var(--muted);
  font-size: 20px;
}

.why__banner {
  min-height: 478px;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.why__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #101419 20%, rgba(16, 20, 25, 0.14) 72%);
}

.why__banner-copy {
  position: relative;
  z-index: 1;
  max-width: 530px;
  padding: 44px;
  color: var(--white);
}

.why__banner-copy h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.why__banner-copy p {
  font-size: 20px;
  margin-bottom: 16px;
}

.why__chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
}

.why__chip img {
  width: 20px;
  height: 20px;
  padding: 10px;
  box-sizing: content-box;
  background: var(--red);
  border-radius: 50%;
}

.why__chip--abs {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: var(--white);
}

.why__mid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 32px 0;
}

.why__quote {
  font-size: 32px;
  font-weight: 700;
  max-width: 903px;
  @media screen and (max-width: 791px) {
    fz22px
  }
}

.why__aside {
  max-width: 257px;
  color: var(--muted);
  font-weight: 500;
  font-size: 20px;
  text-align: left;
}

.why__split {
  display: grid;
  grid-template-columns: 726px 1fr;
  min-height: 568px;
  border-radius: 15px;
  overflow: hidden;
  background: var(--white);
}

.why__split--rev {
  grid-template-columns: 554px 1fr;
}

.why__split-photo {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.why__split-card {
  padding: 44px;
  @media screen and (max-width: 761px){
    padding: 15px;
  }
}

.why__split-card h3 {
  font-size: clamp(26px, 2vh, 36px);
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 20px;
}

.why__split-card--dark {
  background: var(--text);
  color: var(--white);
}

.why__split-card--dark h3 {
  color: var(--white);
}

.why__age {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  margin-bottom: 18px;
}

.why__age strong {
  font-size: 36px;
  flex-shrink: 0;
}

.why__split-card p {
  font-size: 18px;
  margin-bottom: 14px;
}

.why__split-card hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

.why__ok {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 24px;
  font-weight: 800;
}

.why__trust-line {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px 0;
  @media screen and (max-width: 761px) {
    flex-direction: column;
    align-items: start;
  }
}

.why__shield {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.why__shield img {
  width: 43px;
}

.why__trust-line p {
  font-size: 32px;
  font-weight: 700;
}

/* Advantages */
.adv {
  padding: 80px 0;
  overflow: visible;
  @media screen and (max-width: 761px){
    padding: 0;
    padding-top: 80px;
  }
}

.adv__intro {
  position: relative;
  padding-top: 100px;
  margin-bottom: 40px;
}

.adv__intro-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 32px 0 16px;
}

.adv__intro h2 {
  font-size: clamp(36px, 3.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.adv__intro-accent {
  white-space: nowrap;
}

.adv__intro-copy > p {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.35;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 28px;
}

.adv__vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 520px;
}

.adv__vs-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: 0 10px 32px rgba(73, 101, 119, 0.12);
}

.adv__vs-card img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.adv__vs-card b {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
}

.adv__vs-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

/* Asset already includes left transparency, curve and target badge */
.adv__deco {
  position: absolute;
  top: -16px;
  left: 18%;
  right: -40px;
  z-index: -1;
  pointer-events: none;
}

.adv__deco-photo {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  max-width: 735px;
  right: 0;
}

.adv__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.adv__row {
  display: grid;
  grid-template-columns: 80px minmax(220px, 356px) minmax(240px, 344px) minmax(200px, 281px);
  column-gap: 23px;
  align-items: center;
  min-height: 330px;
  padding: 44px;
  border-radius: 30px;
  background: var(--white);
}

.adv__row--dark {
  background: var(--dark);
  color: var(--white);
}

.adv__row--dark2 {
  background: var(--adv-dark);
  color: var(--white);
}

.adv__n {
  font-size: 60px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  align-self: center;
}

.adv__row--dark .adv__n,
.adv__row--dark2 .adv__n {
  color: rgba(53, 191, 133, 0.6);
}

.adv__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.adv__icon {
  flex-shrink: 0;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.adv__icon img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.adv__icon--handshake {
  background: rgba(46, 125, 109, 0.1);
}

.adv__icon--goal,
.adv__icon--users {
  background: rgba(53, 191, 133, 0.15);
  box-shadow: inset 0 0 0 0.5px rgba(53, 191, 133, 0.5);
}

.adv__icon--wallet {
  background: rgba(178, 118, 45, 0.1);
}

.adv__title h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.adv__list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 36px;
  align-self: stretch;
  border-left: 1px solid var(--border);
}

.adv__row--dark .adv__list,
.adv__row--dark2 .adv__list {
  border-left-color: rgba(216, 222, 229, 0.25);
}

.adv__row li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: inherit;
}

.adv__row li img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 0;
}

.adv__hl {
  color: var(--mint);
  font-weight: 700;
  font-size: 1.15em;
  line-height: 1;
}

.adv__hl--sm {
  font-size: 1.1em;
}

.adv__row--dark .adv__title h3,
.adv__row--dark2 .adv__title h3,
.adv__row--dark .adv__list,
.adv__row--dark2 .adv__list {
  color: var(--white);
}

.adv__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 32px;
}

.adv__cta-copy {
  display: flex;
  align-items: center;
  gap: 20px;
}

.adv__cta-copy img {
  width: 100px;
  border-radius: 50%;
  background: rgba(46, 125, 109, 0.05);
  border: 1px solid rgba(46, 125, 109, 0.5);
  padding: 22px;
}

.adv__cta-copy b {
  display: block;
  font-size: 26px;
}

.adv__cta-copy span {
  color: var(--muted);
}

.adv__cta .btn {
  box-shadow: 4px 4px 16px rgba(255, 36, 48, 0.2);
  min-width: min(731px, 100%);
  justify-content: space-between;
  font-size: 26px;
  font-weight: 700;
  padding: 32px;
}

/* Packages */
.packages {
  padding: 80px 0;
}

.packages h2 {
  max-width: 663px;
  margin-bottom: 44px;
}

.packages__grid {
  display: grid;
  grid-template-columns: 400px 423px 400px;
  gap: 26px;
  align-items: stretch;
}

.pkg {
  display: flex;
  flex-direction: column;
  background: #f4f5f6;
  border: 1px solid rgba(216, 222, 229, 0.5);
  border-radius: 15px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.pkg--pro {
  background: var(--pro);
  color: var(--white);
  border: 0;
}

.pkg--rent {
  background: #f6f5f3;
  border-color: rgba(178, 118, 45, 0.15);
}

.pkg__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.pkg__head img {
  width: 40px;
  height: 40px;
  padding: 15px;
  box-sizing: content-box;
  background: rgba(216, 222, 229, 0.5);
  border-radius: 50%;
}

.pkg--pro .pkg__head img {
  background: transparent;
  border: 1px solid var(--mint);
}

.pkg--rent .pkg__head img {
  background: rgba(178, 118, 45, 0.15);
}

.pkg__head h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
}

.pkg__head p {
  margin: 4px 0 0;
  font-size: 16px;
  color: var(--muted);
}

.pkg--pro .pkg__head p {
  color: var(--mint);
}

.pkg--rent .pkg__head h3,
.pkg--rent .pkg__head p {
  color: var(--gold);
}

.pkg__price {
  margin-bottom: 16px;
}

.pkg__price small {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.pkg--pro .pkg__price small {
  color: var(--mint);
}

.pkg__price div {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.pkg__price strong {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
}

.pkg__price span {
  font-size: 20px;
  font-weight: 500;
}

.pkg__price em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 10px;
  color: #8a97a3;
}

.pkg--pro .pkg__price em {
  color: rgba(255, 255, 255, 0.55);
}

.pkg__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(216, 222, 229, 0.6);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 16px;
}

.pkg__metrics--pro {
  background: rgba(46, 125, 109, 0.35);
  border-color: rgba(216, 222, 229, 0.2);
}

.pkg__metric {
  padding: 14px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-right: 1px solid rgba(216, 222, 229, 0.5);
  border-bottom: 1px solid rgba(216, 222, 229, 0.5);
  min-height: 64px;
}

.pkg__metric:nth-child(2n) {
  border-right: 0;
}

.pkg__metric:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.pkg--pro .pkg__metric {
  border-color: rgba(216, 222, 229, 0.2);
}

.pkg__metric img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}


.pkg__metric b {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.pkg__metric small,
.pkg__metric span {
  display: block;
  font-size: 10px;
  line-height: 1.35;
  color: var(--muted);
}

.pkg--pro .pkg__metric small,
.pkg--pro .pkg__metric span {
  color: rgba(255, 255, 255, 0.75);
}

.pkg--rent .pkg__metric small,
.pkg--rent .pkg__metric span {
  color: rgba(178, 118, 45, 0.85);
}

.pkg__feats {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.pkg__feats li {
  display: flex;
  align-items: start;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 8px;
}

.pkg__feats img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pkg__feats-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-bottom: 8px;
}

.pkg__feats-wrap .pkg__feats {
  margin: 0;
}

.pkg__more {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: 0;
  border-top: 1px solid rgba(216, 222, 229, 0.5);
  padding: 16px 0;
  margin-top: auto;
  cursor: pointer;
  color: inherit;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
}

.pkg--pro .pkg__more {
  border-top-color: rgba(216, 222, 229, 0.25);
}

.pkg--rent .pkg__more {
  border-top-color: rgba(178, 118, 45, 0.2);
}

.pkg--pro .pkg__more img {
  filter: invert(1);
}

.pkg__extra {
  display: none;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 16px;
  color: inherit;
}

.pkg.is-open .pkg__extra {
  display: flex;
}

.pkg.is-open .pkg__more img {
  transform: rotate(180deg);
}

.pkg__detail h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.pkg__detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(216, 222, 229, 0.55);
  color: var(--muted);
}

.pkg__detail-icon img {
  width: 18px;
  height: 18px;
}

.pkg--pro .pkg__detail-icon {
  background: rgba(53, 191, 133, 0.15);
  color: var(--mint);
}

.pkg--pro .pkg__detail-icon img {
  filter: invert(72%) sepia(42%) saturate(540%) hue-rotate(105deg) brightness(95%);
}

.pkg--rent .pkg__detail-icon {
  background: rgba(178, 118, 45, 0.15);
  color: var(--gold);
}

.pkg--rent .pkg__detail-icon img {
  filter: invert(48%) sepia(42%) saturate(650%) hue-rotate(6deg) brightness(95%);
}

.pkg__detail dl {
  margin: 0;
}

.pkg__detail dl > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(216, 222, 229, 0.55);
  font-size: 11px;
  line-height: 1.35;
}

.pkg--pro .pkg__detail dl > div {
  border-bottom-color: rgba(216, 222, 229, 0.2);
}

.pkg--rent .pkg__detail dl > div {
  border-bottom-color: rgba(178, 118, 45, 0.18);
}

.pkg__detail dt {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
}

.pkg--pro .pkg__detail dt {
  color: rgba(255, 255, 255, 0.65);
}

.pkg--rent .pkg__detail dt {
  color: rgba(178, 118, 45, 0.85);
}

.pkg__detail dd {
  margin: 0;
  text-align: left;
  font-weight: 500;
}

.pkg__val {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.pkg__val img {
  width: 16px;
  height: 16px;
}

.pkg .btn {
  width: 100%;
  justify-content: center;
  gap: 12px;
}

.packages__note {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 400px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
}

/* Cases */


.cases h2 {
  margin-bottom: 44px;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.case {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 24px;
  box-shadow: 4px 4px 10px rgba(73, 101, 119, 0.05);
}

.case__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.case__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 12px;
  border: 3px solid var(--c);
  border-radius: 5px;
  color: var(--c);
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.case__logo {
  width: 100%;
  min-height: 95px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border);
  border-radius: 5px;
  box-sizing: border-box;
}

.case__logo img {
  height: 47px;
  width: auto;
  max-width: 146px;
  object-fit: contain;
}

.case h3 {
  margin: 0 0 24px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.case ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

.case__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c);
  display: block;
  overflow: visible;
}

/* Reviews */
.reviews {
  padding: 80px 0;
  @media screen and (max-width: 761px){
    padding: 0;
    padding-top: 80px;
  }
}

.reviews h2 {
  text-align: center;
  margin-bottom: 44px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.review {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 24px;
}

.review__person {
  display: flex;
  gap: 22px;
  align-items: center;
}

.review__photo {
  width: 145px;
  height: 184px;
  flex-shrink: 0;
  border: 4px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}

.review__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 20%;
  display: block;
}

.review__photo--ivanov img {
  object-position: 50% 18%;
}

.review__photo--popova img {
  object-position: 60% 15%;
}

.review__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.review__info b {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.review__info span {
  color: rgba(73, 101, 119, 0.86);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.review blockquote {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.review__quotes {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.review p {
  margin: 0;
  padding-top: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.reviews__ratings {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin: 44px 0 32px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 1 478px;
  max-width: 478px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
}

.rating__logo {
  width: 137px;
  height: 137px;
  object-fit: contain;
  flex-shrink: 0;
}

.rating__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.rating b {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.rating__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
}

.rating__meta span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating__meta img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.rating__meta img[src*="chat"] {
  opacity: 0.55;
}

.reviews .btn--center {
  margin-top: 0;
  min-width: min(466px, 100%);
  justify-content: center;
  padding: 24px 32px;
  font-size: 20px;
  font-weight: 600;
  @media screen and (max-width: 761px){
    font-size: 20px;
    padding: 15px;
  }
}

/* FAQ */
.faq {
  padding: 80px 0;
  @media screen and (max-width: 761px){
    padding: 0;
    padding-top: 80px;
  }
}

.faq h2 {
  text-align: center;
  font-size: 48px;
  max-width: 982px;
  margin: 0 auto 44px;
}

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

.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: 4px 4px 10px rgba(73, 101, 119, 0.05);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "";
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: url("../assets/icons/icon-plus.svg") center / contain no-repeat;
}

.faq__item[open] {
  padding-bottom: 24px;
}

.faq__item[open] summary {
  border-left: 10px solid var(--red);
  padding-left: 22px;
  border-bottom: 1px solid var(--border);
}

.faq__item[open] summary::after {
  background-image: url("../assets/icons/icon-minus.svg");
}

.faq__item p {
  padding: 8px 24px 0 32px;
  font-size: 24px;
}

/* Contact */
.contact {
  padding: 40px 0 80px;
}

.contact__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 787px;
  margin-bottom: 24px;
}

.contact__titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact h2 {
  margin: 0;
  font-family: Unbounded, sans-serif;
  font-size: 55px;
  font-weight: 600;
  line-height: 1.15;
}

.contact__sub {
  margin: 0;
  font-family: Unbounded, sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.2;
  color: var(--green);
}

.contact__desc {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 787px) minmax(0, 456px);
  gap: 38px;
  align-items: start;
}

.contact__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.contact__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 787 / 389;
  object-fit: cover;
  border-radius: 15px;
}

.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.contact__list img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  background: var(--green);
  color: var(--white);
  border-radius: 15px;
  padding: 40px 32px;
  box-sizing: border-box;
}

.contact__form-title {
  margin: 0;
  max-width: 377px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__field,
.contact__form fieldset {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
  min-width: 0;
}

.contact__field > span,
.contact__form legend {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  color: var(--white);
  padding: 0;
}

.contact__form input[type="text"],
.contact__form input[type="tel"] {
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 5px;
  background: var(--white);
  color: var(--text);
  padding: 0 16px;
  outline: none;
  font: inherit;
  font-size: 18px;
  box-sizing: border-box;
}

.contact__channels {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}

.contact__ch {
  border: 1px solid var(--white);
  border-radius: 5px;
  padding: 12px 8px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  color: var(--white);
  background: transparent;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.contact__ch:has(input[value="max"]) {
  width: 98px;
}

.contact__ch:has(input[value="phone"]) {
  width: 137px;
}

.contact__ch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact__ch img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact__ch span {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.contact__ch:has(input:checked) {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.contact__form .btn {
  width: 100%;
  margin: 0;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  padding: 24px;
  @media screen and (max-width: 761px){
    font-size: 20px;
    padding: 15px;
  }
}

/* Modals */
body.is-modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 25, 0.45);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(16, 20, 25, 0.18);
  padding: 40px 32px 28px;
}

.modal__dialog--exit {
  width: min(100%, 820px);
  padding: 48px 40px 40px;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #9aa6b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.modal__close:hover {
  color: var(--text);
  background: #f4f6f8;
}

.modal__view {
  display: none;
}

.modal__view.is-active {
  display: block;
}

.modal__view--success {
  text-align: center;
  padding: 24px 8px 16px;
}

.modal__dialog--consult h2,
.modal__dialog--exit h2 {
  margin: 0;
  font-family: Unbounded, sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  color: var(--text);
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.consult-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.consult-form__field > span,
.consult-form__channels legend {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.consult-form__field input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 16px;
  background: var(--white);
  color: var(--text);
  outline: none;
  box-sizing: border-box;
}

.consult-form__field input::placeholder {
  color: #9aa6b2;
}

.consult-form__field input:focus {
  border-color: var(--green);
}

.consult-form__channels {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.consult-form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.consult-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  color: var(--text);
  box-sizing: border-box;
}

.consult-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consult-chip img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.consult-chip span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.consult-chip:has(input:checked) {
  border-color: var(--text);
  box-shadow: 0 0 0 1px var(--text);
}

.consult-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.consult-form__consent {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}

.consult-form__consent input {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--white);
  display: grid;
  place-content: center;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
}

.consult-form__consent input:checked {
  background: var(--green);
  border-color: var(--green);
}

.consult-form__consent input:checked::after {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.consult-success__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-content: center;
}

.modal__view--success h2 {
  margin-bottom: 16px;
}

.consult-success__lead {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.consult-success__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  color: var(--text);
}

.consult-success__phone {
  display: inline-block;
  margin: 4px 0;
  color: var(--red);
  font-weight: 700;
  font-size: 22px;
}

.exit-modal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 24px;
  align-items: center;
}

.exit-modal__copy h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.exit-modal__copy p {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.35;
  max-width: 420px;
}

.exit-modal__copy p:last-of-type {
  margin-bottom: 28px;
}

.exit-modal__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}

.exit-modal__cta {
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  font-size: 18px;
  white-space: nowrap;
  flex: 0 1 auto;
}

.exit-modal__dismiss {
  min-height: 60px;
  padding: 16px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: #9aa6b2;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex: 0 0 auto;
}

.exit-modal__dismiss:hover {
  border-color: #b7c1cb;
  color: var(--muted);
}

.exit-modal__art {
  width: 100%;
  max-width: 280px;
  height: auto;
  justify-self: end;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 44px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 220px 1fr 252px;
  gap: 64px;
  align-items: start;
}

.footer__logos img {
  width: 220px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer__rates {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer__rate-head {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}

.footer__rate-head img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer__stars {
  color: #ffc107;
  font-size: 10px;
  letter-spacing: 1px;
}

.footer__stars small {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer__nav div {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 40px;
  border-right: 1px solid rgba(216, 222, 229, 0.25);
}

.footer__nav a {
  font-size: 18px;
  font-weight: 700;
}

.footer__nav a:hover {
  color: var(--mint);
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contacts b {
  font-size: 18px;
}

.footer__phone {
  color: var(--red);
  font-size: 30px;
  font-weight: 700;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 89px;
  margin-top: 64px;
  font-size: 16px;
}

.footer__legal span {
  font-family: Ubuntu, sans-serif;
}

.footer__docs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1200px) {
  :root {
    --pad: 24px;
  }

  .hero__inner,
  .packages__grid,
  .reviews__grid,
  .why__split,
  .why__split--rev,
  .contact__inner,
  .process__card,
  .process__card--launch,
  .process__card--dark,
  .faq__cols,
  .adv__row,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .contact__channels {
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
  }

  .contact__ch,
  .contact__ch:has(input[value="max"]),
  .contact__ch:has(input[value="phone"]) {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 6px;
    min-height: 44px;
    gap: 6px;
  }

  .contact__ch img {
    width: 22px;
    height: 22px;
  }

  .contact__ch span {
    font-size: 13px;
  }

  .adv__row {
    grid-template-columns: auto 1fr;
    min-height: 0;
    padding: 28px 24px;
    row-gap: 20px;
    column-gap: 16px;
  }

  .adv__title {
    grid-column: 1 / -1;
    gap: 16px;
  }

  .adv__list {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
    gap: 20px;
  }

  .adv__icon {
    width: 96px;
    height: 96px;
  }

  .adv__icon img {
    width: 56px;
    height: 56px;
  }

  .adv__title h3 {
    font-size: 26px;
  }

  .adv__n {
    font-size: 48px;
  }

  .adv__hl {
    font-size: 24px;
  }

  .adv__intro {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 0;
  }

  .adv__intro-copy {
    max-width: none;
    padding: 0;
  }

  .adv__intro-accent {
    white-space: normal;
  }

  .adv__deco {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: min(100%, 560px);
    margin: 0 auto;
    order: -1;
    display: none;
  }

  .adv__vs {
    max-width: none;
    grid-template-columns: 1fr;
  }

  .adv__vs-card div{
    width: 100%;
  }

  .header__nav {
    display: none;
  }

  .header__burger {
    display: block;
    margin-left: auto;
  }

  .header__contacts .header__phone,
  .header__contacts .btn {
    display: none;
  }

  .mobile-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }

  .hero h1,
  .why h2,
  .packages h2,
  .cases h2,
  .reviews h2,
  .faq h2,
  .contact h2,
  .adv__intro h2,
  .process__hero h2,
  .leadgen__title {
    font-size: clamp(22px, 6vw, 44px);
  }

  .process__hero {
    min-height: 400px;
  }

  .process__hero-photo {
    left: 0;
    background-size: cover;
    background-position: 70% center;
  }

  .process__hero-photo::after {
    width: min(55%, 420px);
    background: linear-gradient(
      90deg,
      #0a0e12 0%,
      rgba(10, 14, 18, 0.9) 40%,
      rgba(10, 14, 18, 0.35) 75%,
      transparent 100%
    );
  }

  .crm__body {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .crm__side {
    display: none;
  }

  .crm__filters {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .crm__filters::-webkit-scrollbar {
    display: none;
  }

  .why__head,
  .why__mid,
  .adv__cta,
  .process__plan {
    flex-direction: column;
    align-items: flex-start;
  }

  .process__launch-grid,
  .process__scale,
  .pkg__feats-wrap {
    grid-template-columns: 1fr;
  }

  .process__card--launch,
  .process__card--dark {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process__launch-title {
    width: 100%;
    max-width: none;
    padding-right: 0;
  }

  .process__launch-title br {
    display: none;
  }

  .process__launch-title h3 {
    font-size: 20px;
  }

  .process__launch-title > .process__days {
    font-size: 36px;
    margin: 10px 0 12px;
  }

  .process__launch-title p {
    font-size: 16px;
    max-width: none;
  }

  .adv__cta .btn,
  .contact__form,
  .pkg .btn {
    min-width: 0;
    width: 100%;
    padding: 15px;
    font-size: 22px;
  }

  .faq h2,
  .faq__item summary,
  .faq__item p,
  .review p {
    font-size: 18px;
  }

  .cases__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .case h3 {
    font-size: 30px;
  }

  .case li {
    font-size: 18px;
    gap: 16px;
  }

  .review {
    gap: 28px;
    padding: 24px 20px;
  }

  .review__photo {
    width: 110px;
    height: 140px;
  }

  .review__info {
    gap: 12px;
  }

  .review__info span,
  .review p {
    font-size: 18px;
  }

  .review blockquote {
    padding-top: 24px;
  }

  .review__quotes {
    width: 36px;
    height: 36px;
  }

  .rating {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 24px;
  }

  .rating__logo {
    width: 96px;
    height: 96px;
  }

  .rating b {
    font-size: 26px;
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .cases__grid {
    grid-template-columns: 1fr;
  }

  .reviews__ratings {
    flex-direction: column;
    align-items: stretch;
  }

  .header__inner {
    gap: 12px;
    min-height: 72px;
  }

  .header__logo img {
    width: min(210px, 68vw);
    height: auto;
  }

  .hero {
    padding-top: 24px;
  }

  .why__banner {
    min-height: 0;
    background-position: 70% center;
  }

  .why__banner::before {
    background: linear-gradient(
      105deg,
      #101419 0%,
      rgba(16, 20, 25, 0.94) 48%,
      rgba(16, 20, 25, 0.72) 72%,
      rgba(16, 20, 25, 0.35) 100%
    );
  }

  .why__banner-copy {
    max-width: none;
    padding: 24px 20px 28px;
  }

  .why__banner-copy h3 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .why__banner-copy p {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .why__chip {
    gap: 10px;
    font-size: 16px;
    margin-top: 4px;
  }

  .why__chip img {
    width: 18px;
    height: 18px;
    padding: 8px;
  }

  .process__hero {
    min-height: 360px;
    align-items: flex-end;
  }

  .process__hero-photo {
    left: 0;
    background-size: cover;
    background-position: 85% center;
  }

  .process__hero-photo::after {
    width: 100%;
    background: linear-gradient(
      90deg,
      #0a0e12 0%,
      rgba(10, 14, 18, 0.88) 42%,
      rgba(10, 14, 18, 0.45) 72%,
      rgba(10, 14, 18, 0.15) 100%
    );
  }

  .process__hero h2 {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.2;
    max-width: 18ch;
    padding: 36px 0 40px;
  }

  .crm {
    min-height: 0;
    width: 100%;
    max-width: 100%;
  }

  .crm__rail {
    width: 42px;
    padding: 14px 8px;
    gap: 24px;
  }

  .crm__rail-btn {
    width: 28px;
    height: 28px;
  }

  .crm__rail-dots {
    gap: 28px;
  }

  .crm__rail-dots button {
    width: 12px;
    height: 12px;
  }

  .crm__body {
    padding: 18px 12px;
  }

  .crm__leads-head {
    gap: 14px;
    margin-bottom: 14px;
  }

  .crm__leads-head strong {
    font-size: 18px;
  }

  .crm__filters {
    flex-wrap: wrap;
    gap: 5px;
    max-width: 100%;
  }

  .crm__filter {
    font-size: 11px;
    padding: 6px 9px;
  }

  .crm__more {
    display: none;
  }

  .crm__row {
    grid-template-columns: 16px 16px minmax(0, 1fr) 16px 20px;
    gap: 8px;
    padding: 10px 12px;
    min-height: 44px;
  }

  .crm__check,
  .crm__ava,
  .crm__radio {
    width: 16px;
    height: 16px;
  }

  .crm__init {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .crm__badge {
    font-size: 10px;
    padding: 5px 8px;
  }

  .leadgen__row,
  .leadgen__row--check {
    height: auto;
  }

  .leadgen__bg {
    position: relative;
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .leadgen__veil {
    display: none;
  }

  .leadgen__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
    padding: 28px 20px 36px;
  }

  .leadgen__title,
  .leadgen__copy,
  .leadgen__proof {
    position: static;
    width: 100%;
    max-width: none;
  }

  .leadgen__proof {
    will-change: auto;
  }

  .leadgen__proof--search {
    --tilt: 3deg;
  }

  .leadgen__proof--reviews {
    --tilt: -2deg;
  }

  .leadgen__proof--lawyers {
    --tilt: 1.5deg;
  }

  .leadgen__row--find .leadgen__bg {
    display: none;
  }

  .leadgen__row--find .leadgen__inner {
    order: 1;
  }

  .leadgen__row--find {
    display: flex;
    flex-direction: column;
  }

  .leadgen__stats {
    grid-template-columns: 1fr;
  }

  .leadgen__stat + .leadgen__stat {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 16px;
  }

  .modal {
    padding: 16px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .modal__dialog--consult,
  .modal__dialog--exit {
    width: 100%;
    margin: auto;
    padding: 32px 20px 24px;
  }

  .modal__dialog--consult h2 {
    font-size: 24px;
    padding-right: 28px;
  }

  .exit-modal {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .exit-modal__copy h2 {
    font-size: 32px;
  }

  .exit-modal__copy p {
    font-size: 18px;
    max-width: none;
  }

  .exit-modal__art {
    max-width: 220px;
    justify-self: center;
    order: -1;
  }

  .exit-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .exit-modal__dismiss {
    width: 100%;
  }
}
