:root {
  --bg: #fff;
  --bg-soft: #eef3f5;
  --card: #ffffff;
  --green: linear-gradient(90deg, #004745, #03625f);
  --accent: #09a189;
  --accent-dark: #1a1615;
  --accent-soft: rgba(9, 161, 137, 0.08);
  --text: #0a1b1f;
  --muted: #777;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-pill: 999px;
}

p {
	font-size: 18px;
    font-weight: 300;
    line-height: 120%;
    color: #777;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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


h2{
	font-size: clamp(26px, 4.4vw, 36px);
    line-height: 120%;
    width: 55%;
    font-weight: 500;
    margin: 0px 0px 20px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-blur{
	-webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    bottom: calc(calc(100% - min(var(--framer-viewport-height,100%),100%)) + 0px);
    height: 80px;
    position: fixed;
    z-index: 5;
    flex: none;
    order: 1003;
    left: 0;
    right: 0;
    overflow: visible;
    -webkit-mask: linear-gradient(#0000 0%,#000 100%);
    mask: linear-gradient(#0000 0%,#000 100%);
}


/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 25;
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  width: 100%;
  max-width: 1200px; 
  margin: 0 auto; 

  border-radius: 40px;
  padding: 16px 24px;

  --border-color: rgba(117, 115, 114, 0);
  --border-left-width: 1px;
  --border-right-width: 1px;
  --border-top-width: 1px;
  --border-style: solid;

  backdrop-filter: blur(0px);
  background-color: rgba(255, 255, 255, 0);

  border-left: var(--border-left-width) var(--border-style) var(--border-color);
  border-right: var(--border-right-width) var(--border-style) var(--border-color);
  border-top: var(--border-top-width) var(--border-style) var(--border-color);
}

.logo img {
	width: 120px;
}

.header-nav {
  display: flex;
  gap: 18px;
  font-size: 16px;
  color: var(--accent-dark);
  flex: 1;
  justify-content: center;
}

.header-nav a {
  cursor: pointer;
  position: relative;
  padding-bottom: 2px;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: var(--accent-dark);
  background: #004745;
  transition: width 0.18s ease;
}

.header-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  border-radius: var(--radius-pill);
  border: none;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all 0.15s ease;
  white-space: nowrap;
  box-shadow: rgba(0, 0, 0, 0.14) 0px 0.78363px 0.78363px -0.5px, rgba(0, 0, 0, 0.14) 0px 1.91965px 1.91965px -1px, rgba(0, 0, 0, 0.13) 0px 3.63745px 3.63745px -1.5px, rgba(0, 0, 0, 0.13) 0px 6.35004px 6.35004px -2px, rgba(0, 0, 0, 0.12) 0px 11.0519px 11.0519px -2.5px, rgba(0, 0, 0, 0.1) 0px 20.2428px 20.2428px -3px, rgba(0, 0, 0, 0.06) 0px 40px 40px -3.5px;
    opacity: 1;
}

.btn svg{
	background: #fff;
    border-radius: 50%;
    padding: 5px;
	transition: 0.3s;
}
.btn-outline:hover svg{
	margin-left: 5px;
	transform: rotate(45deg);
}

.btn-outline {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  box-shadow: rgba(0, 0, 0, 0.14) 0px 0.78363px 0.78363px -0.5px, rgba(0, 0, 0, 0.14) 0px 1.91965px 1.91965px -1px, rgba(0, 0, 0, 0.13) 0px 3.63745px 3.63745px -1.5px, rgba(0, 0, 0, 0.13) 0px 6.35004px 6.35004px -2px, rgba(0, 0, 0, 0.12) 0px 11.0519px 11.0519px -2.5px, rgba(0, 0, 0, 0.1) 0px 20.2428px 20.2428px -3px, rgba(0, 0, 0, 0.06) 0px 40px 40px -3.5px;
    opacity: 1;
}

.dot{
	width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #fff;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
}


.round {
    background: #fff;
    border-top-left-radius: 40px; /* скругление теперь снизу справа */
    flex: none;
    place-content: center;
    align-items: center;
    gap: 10px;
    width: 400px;
    height: 100px;
    padding: 0;
    display: flex;
    position: absolute;
    right: 0;      /* остаётся справа */
    bottom: 0;     /* вместо top: 0; */
    overflow: visible;
}

.ro-1 {
    aspect-ratio: 1;
    height: 40px;
    width: 40px;
    z-index: 1;
    position: absolute;
    bottom: 0;         /* вместо top: 0; */
    left: -40px;
    overflow: hidden;
    border-bottom-right-radius: 1000px;
    box-shadow: 10px 10px 0 6px #fff; /* тень вниз */
}

.ro-2 {
    aspect-ratio: 1;
    height: 40px;
    width: 40px;
    z-index: 1;
    position: absolute;
    top: -40px;        /* вместо bottom: -40px; */
    right: 0;
    overflow: hidden;
    border-bottom-right-radius: 1000px;
    box-shadow: 10px 6px 0 6px #fff;  /* тень вниз */
}

.round span {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}


.round span {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.ava {
    display: flex;
    gap: 4px;
    width: 100%;
    justify-content: center;
    z-index: 999;
}
.avatars{
	display: flex;
    gap: 20px;
	align-items: center;
}
.avatars img:first-child {
    margin-left: 0;
}
.avatars img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    min-width: 60px;
    min-height: 60px;
    background: #fff;
    padding: 2px;
    margin-left: -10px;
}
.avatars p{
	font-size: 28px;
    line-height: 70%;
    font-weight: 600;
	color: #000;
}
.avatars-num, .avatars-plus{
	font-size: 28px !important;
}

/* HERO */

.hero {
    height: 100%;
    width: 95%;
    margin: auto;
    will-change: transform;
    border-radius: 30px;
    opacity: 1;
    transform: none;
    flex-flow: column;
    place-content: flex-start space-between;
    display: flex;
    position: relative;
    margin-top: 100px;
    overflow: hidden;
    align-items: flex-start;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-blur{
  position:absolute;
  inset: 0;
  z-index: 1;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: -1;
}

.hero-block {
	display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    justify-content: space-between;
}

.hero-bg{
  transform: scale(1.1);
  opacity: 0;
  will-change: opacity, transform, filter;
}

.hero-blur{
  opacity: 1;
  will-change: opacity, backdrop-filter, -webkit-backdrop-filter;
}


.hero-content{
  padding: 140px 0px;
  z-index: 3;
    position: relative;
  max-width: 900px;
}

.hero-title .hero-word{
  display: inline-block;
  will-change: opacity, transform, filter;
}


@media (max-width: 768px) {
  .hero-subtitle {
    width: 100% !important;
    margin-bottom: 30px !important;
  }
  .hero-block {
    flex-direction: column;
  }
  .header-actions span{
    display: none;
  }
   .header-actions .btn-outline{
        width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    min-width: 50px;
    min-height: 50px;
    background: #ffffffb5;
    padding: 2px;
    margin-left: -10px;
}
}


.hero-kicker {
	display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-pill);
    padding: 5px 20px;
    background: #b59870;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 30px;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #004745;
}

.hero-title {
  font-size: clamp(30px, 4.4vw, 50px);
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0 0 20px;
    line-height: 120%;
    font-weight: 500;
    color: #fff;
}
.hero-title p{
   font-weight: 800;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
  	color: #fff;
}

.hero-number-label {
  font-size: 14px;
    color: #fff;
    margin-top: -10px;
}

.hero-number {
  font-weight: 800;
    font-size: clamp(34px, 4vw, 70px);
    letter-spacing: 0.05em;
    margin-bottom: 0px;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 80px;
    color: #fff;
}


.hero-currency {
  font-size: 16px;
  font-weight: 600;
  margin-left: 4px;
}

.hero-subtitle,
.hero-actions{
  opacity: 0;
  filter: blur(8px);
  transform: translateY(14px);
  will-change: opacity, transform, filter;
}


.hero-subtitle {
  font-size: 20px;
    font-weight: 300;
    width: 85%;
    line-height: 130%;
    color: #fff;
    margin-bottom: 50px;
}

.hero-actions {
  display: flex;
  justify-content: left;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-badge-row {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #fff;
  margin-top: 35px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-badge-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.hero-actions .btn-outline {
    background: #fff;
    color: #000;
}
.hero-overlay{
	width: 100%;
  	background: linear-gradient(90deg, #00474591, #004745a3, #b5987061);
}
.hero-actions .btn svg{
    background: #000;
    color: #fff;
}
.ava{
	transition: 0.3s;
}
.avatars img:hover .avatars img{
	scale: 1.02;
}







/* -----manager------ */
.chip{
	display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
    background-color: #fafafa;
    border-radius: 22px;
    padding: 7px 20px 8px 20px;
    color: #000;
    width: fit-content;
    height: 40px;
  	margin-bottom: 30px;
}
.chip-dot {
    background: var(--green);
    width: 5px;
    height: 5px;
    border-radius: 20px;
}

.block-top{
	    padding-bottom: 20px;
}

.tiers {
    padding: 70px 0px 20px;
}

.tiers-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 980px) {
  .tiers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tier-card {
  border-radius: 30px;
  padding: 32px;
  background: #fafafa;
  transition: 0.3s;
}

.tier-card--pro {
  background: linear-gradient(45deg, #004745, #004745bd, #b59870);
  color: #fdfdfd;
}

.tier-card:hover {
  scale: 1.02;
}

/* header внутри карточки */

.tier-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.tier-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tier-card__icon--light {
  background: rgba(8, 130, 106, 0.08);
  color: #014745;
}

.tier-card__icon--dark {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.tier-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #12302b;
  margin: 0 0 4px;
}

.tier-card__subtitle {
  font-size: 14px;
  color: rgba(31, 56, 52, 0.7);
  margin: 0;
}

.tier-card__title--light {
  color: #ffffff;
}

.tier-card__subtitle--light {
  color: rgba(243, 255, 251, 0.85);
}

/* ставка */

.tier-card__rate {
  margin-bottom: 28px;
}

.tier-card__rate-main {
  font-size: 40px;
  font-weight: 800;
  color: #004745;
}

.tier-card__rate-main--light {
  color: #ffffff;
}

.tier-card__rate-main--accent {
  background: linear-gradient(120deg, #08826a, #14b8a3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tier-card__rate-label {
  margin-left: 8px;
  font-size: 16px;
  color: rgba(31, 56, 52, 0.7);
}

.tier-card__rate-label--light {
  color: rgba(240, 255, 252, 0.85);
}

/* список преимуществ */

.tier-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tier-card__list--light span {
  color: rgba(244, 255, 252, 0.9);
}

.tier-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(31, 56, 52, 0.85);
}

.tier-card__item + .tier-card__item {
  margin-top: 14px;
}

.tier-card__check {
  margin-top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(8, 130, 106, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #004745;
}

.tier-card__check--light {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}



.pp-cards{
  display:flex;
  gap:20px;

}
.pp-card:hover{
	scale:1.02;
}

.pp-card{
  width:100%;
  min-height:260px;
  position:relative;
    transition: 0.3s;
}

.pp-card__inner{
  background:#fafafa;
  height:100%;
  width:100%;
  border-radius:24px;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  align-items:flex-start;
  position:relative;
  overflow:hidden;
}

.pp-card__top{
  width:100%;
  padding-right:70px; /* чтобы заголовок не залезал под уголок */
}

.pp-card__title{
  margin:0;
  font-size:22px;
  line-height:1.15;
}

.pp-card__text{
  margin:14px 0 0;
  font-size:16px;
  line-height:1.45;
  opacity:.9;
}

.pp-card__quote{
  margin-top:18px;
  display:flex;
  gap:10px;
  font-size:15px;
  line-height:1.4;
  opacity:.95;
}

.pp-card__quoteMark{
  font-size:26px;
  line-height:1;
  transform: translateY(-2px);
  opacity:.7;
}


.pp-card--accent .pp-card__text,
.pp-card--accent .pp-card__quote{
  opacity:.92;
}

/* Corner number (как в примере) */
.pp-card__num-corner{
  background:#fff;
  border-bottom-left-radius:18px;
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:absolute;
  right:0;
  top:0;
  overflow:visible;
}
.pp-card__num-corner span{
  font-size:16px;
  font-weight:600;
  color:#000;
}

/* вырезы-скругления */
.pp-card__corner-ro1{
  aspect-ratio:1;
  height:20px;
  width:20px;
  position:absolute;
  top:0;
  left:-20px;
  overflow:hidden;
  border-top-right-radius:1000px;
  box-shadow:4px -5px 0 2px #fff;
}
.pp-card__corner-ro2{
  aspect-ratio:1;
  height:20px;
  width:20px;
  position:absolute;
  bottom:-20px;
  right:0;
  overflow:hidden;
  border-top-right-radius:1000px;
  box-shadow:4px -5px 0 2px #fff;
}

/* Responsive */
@media (max-width: 980px){
  .pp-cards{flex-direction:column;}
  .pp-card{min-height:auto;}
  .pp-card__inner{padding:24px;}
}








.extra-commission__content{
	    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.extra-commission{
	margin-bottom: 70px;
}

.extra-commission__card{
  display: grid;
    grid-template-columns: 0.8fr .9fr;
    gap: 50px;
    padding: 30px 35px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
      background: #fafafa;
}
.extra-commission img{
	    object-fit: cover;
    height: 300px;
    width: 100%;
    border-radius: 30px;
}
.extra-commission__kicker{
  font-weight:700;
  font-size:24px;
  margin-bottom:16px;
  line-height:120%;
}
.extra-commission__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.extra-commission__item{
  display:flex;
  align-items:baseline;
  gap:12px;
  font-size:16px;
}
.extra-commission__name{font-weight:300;line-height: 120%}
.extra-commission__dots{
  flex:1;
  border-bottom:1px dashed rgba(0,0,0,.22);
  transform: translateY(-3px);
}
.extra-commission__value{white-space:nowrap; font-weight:600;}

.extra-commission__media{
  border-radius:22px;
  background:#fff;
  border:1px dashed rgba(0,0,0,.18);
  min-height:180px;
}




  .pm-block{
    padding: clamp(28px, 4vw, 35px) 0;
  }

  .pm-block .chip {
    background-color: #fff;
  }
  .pm-grid{
    display: flex;
    grid-template-columns: 1.2fr 2fr;
    gap: clamp(18px, 3vw, 42px);
    padding: 30px;
    background: #fafafa;
    border-radius: 30px;
  }

  .pm-media{
    width: 80%;
  }

  .pm-img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    min-height: 500px;
    object-fit: cover;
  }

  .pm-contacts h3{
	margin: 10px 0px;
  }

.pm-side-title{
	margin: 0px;
}
  .pm-cards{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .pm-card{
	 position: relative;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    justify-items: center;
  }

  .pm-card:hover{
    scale: 1.02;
  }
  .pm-contacts p{
      margin: 5px 0px 10px;
  }
  .pm-content{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }
    .pm-content h2{
      width: 70%;
    }
  .pm-card:focus-visible{
    outline: 3px solid rgba(84,113,115,.35);
    outline-offset: 3px;
  }

  .pm-card svg{
    width: 32px;
    height: 32px;
  }
  .pm-card__body{
    display: grid;
    gap: 6px;
  }

  .pm-card__title{
    font-weight: 300;
    line-height: 1.2;
  }

  .pm-card__text{
    font-size: 14px;
    line-height: 1.45;
    color: var(--pm-muted);
  }

  /* Responsive */
  @media (max-width: 980px){
      .pm-card svg {
    width: 26px;
    height: 26px;
}
    .extra-commission__dots{border-bottom: 0px dashed rgba(0,0,0,.22);}
    .pm-grid{flex-direction: column;}
    .pm-media {width: 100%;}
    .pm-img {min-height: 100%;}
    .pm-cards{ grid-template-columns: 1fr; }
    .pm-card{ grid-template-columns: 44px 1fr 18px; }
    .step-content {
    width: 80%;
}
  }




 

/* STEPS */
.how{padding: 70px 0px;}
.steps-grid {
   display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
  grid-auto-rows: 140px;
  gap: 18px;
}

.step-card--1{ grid-column: span 3; grid-row: span 2; }
.step-card--2{ grid-column: 4 / span 2; grid-row: span 2; }
.step-card--3{ grid-column: span 2; grid-row: 3 / span 2; }
.step-card--4{ grid-column: 3 / span 3; grid-row: 3 / span 2; }

.step-card { overflow: hidden; } /* чтобы картинка не торчала при выезде */
.step-card img { will-change: transform, opacity, filter; }
.step-content { will-change: transform, opacity, filter; }

.step-card:hover img{
	scale: 1.05;
}
.step-card {
     border-radius: 22px;
    padding: 20px 20px;
    position: relative;
      background: #fafafa;
  	overflow: hidden;
}
.step-content{
	width: 65%
}
.step-card img{
	    width: 250px;
    position: absolute;
    right: -90px;
  	bottom: 0px;
  transition: 0.3s;
}
.step-card--1 img{
	    width: 270px;
    position: absolute;
    right: 0px;
    bottom: -40px;
}
.step-card--3 img{
	width: 200px;
    position: absolute;
    right: -50px;
    bottom: -60px;
}
.step-4{
	top: 90px;
  right: -40px !important;
}
  .step-card--4 img{
    right: -70px;
    bottom: -200px;
  }
.step-number {
  width: 26px;
  height: 26px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.step-title {
     font-size: 22px;
  line-height: 120%;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 20px;
}

  .impact-pulse{    
    position: absolute;
    right: -130px;
    bottom: -190px;
}
  .impact-pulse__svg{    
    width: 350px;
    height: 350px;
    display: block;
}
  /* Базовая пульсация */
  .pulse{
    transform-origin: 180px 180px; /* центр viewBox */
    transform-box: fill-box;
    animation: pulseRing 2.2s ease-in-out infinite;
    will-change: transform, opacity;
  }

  /* Разные фазы как в lottie */
  .pulse--outer{ animation-delay: 0s; }
  .pulse--mid  { animation-delay: .18s; }
  .pulse--core { animation-delay: .34s; }

  @keyframes pulseRing{
    0%   { transform: scale(0.92); opacity: .25; }
    35%  { transform: scale(1.02); opacity: 1; }
    70%  { transform: scale(1.06); opacity: .55; }
    100% { transform: scale(0.92); opacity: .25; }
  }

  /* уважение к prefers-reduced-motion */
  @media (prefers-reduced-motion: reduce){
    .pulse{ animation: none; }
  }

/* Mobile */
@media (max-width: 640px){
  .extra-commission__card {
    grid-template-columns: 1fr;
  }
  .extra-commission img{
  	display: none;
  }
  .steps-grid{
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }
  
  .step-card--1 img {
    width: 200px;
}
  
  .step-card--3 img {
    right: -50px;
    bottom: -80px;
}
  .step-card--4 img{
    width: 200px;
    right: -90px;
    bottom: -150px;
  }

  /* сброс позиционирования с десктопа */
  .step-card--1,
  .step-card--2,
  .step-card--3,
  .step-card--4{
    grid-column: auto !important;
    grid-row: auto !important;
    grid-column-start: auto !important;
    grid-row-start: auto !important;
  }

  .step-card{
    padding: 18px;
    border-radius: 20px;
    min-height: 0;
  }
}



/* CALC */

.calc{
	    padding: 70px 0px;
}

.calc-card{
  background: #fafafa;
  border-radius:30px;
  padding:22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}

.calc-form{
  display:grid;
  gap:14px;
}

.calc .field label{
  font-weight:600;
  font-size:16px;
  display:block;
  margin-bottom:6px;
}

.calc .field small{
  display:block;
  margin-top:6px;
  color: rgba(0,0,0,.55);
  font-size:12px;
  line-height:1.35;
}

.calc .input,
.calc .select{
  width:100%;
  border-radius:16px;
  background:#fff;
  padding:14px 14px;
  font-size:14px;
  outline:none;
  border: none;
}

.calc .input:focus,
.calc .select:focus{
  border-color: rgba(0,71,69,.45);
}

.calc-result{
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(0,0,0,.06);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
  position:relative;
  overflow:hidden;
      justify-content: space-between;
}

.calc-result__top{
  display:flex;
  flex-direction:column;
  gap:6px;
  position:relative;
  z-index:1;
}

.calc-result__label{
  font-size:12px;
  color: rgba(0,0,0,.55);
  letter-spacing:.12em;
  text-transform:uppercase;
}

.calc-result__value{
 font-size: 44px;
    font-weight: 800;
    line-height: 1.05;
    margin: 10px 0px 30px;
}

.calc-formula{
  font-size:13px;
  color: rgba(0,0,0,.65);
  background: rgba(0,0,0,.03);
  border-radius:14px;
  padding:10px 12px;
  position:relative;
  z-index:1;
}

.calc-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  position:relative;
  z-index:1;
}

.calc-note{
  font-size:14px;
  line-height:1.45;
  color: rgba(0,0,0,.55);
  position:relative;
  z-index:1;
}

.calc-side{
  background:#fff;
  border-radius:30px;
  border:1px solid rgba(0,0,0,.06);
  padding:22px;
}

.calc-side-kicker{
  font-size:14px;
  text-transform:uppercase;
  color: #000;
  margin-bottom:10px;
}

.calc-side-big{
  font-size:16px;
  line-height:1.5;
  background:#fafafa;
  border-radius:16px;
  padding:12px 14px;
  color: #000;
}

@media (max-width: 980px){
  .calc-card{ grid-template-columns:1fr; }
}





/* STATS */
.stats h2{
	width: 100%;
}
.stats .block-top{
	width: 45%;
}
.stats{
    padding: 90px 20px 250px;
    position: relative;
    background: #fafafa;
    margin: 35px 0px;
    border-radius: 50px;
	  background-image: url(/assets/img/2.webp);
    background-repeat: no-repeat;
    background-size: 70% 160%;
    background-position: 130% 100%;
}
.stats .chip {
    background-color: #fff;
	
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.stat-top svg{
	background-color: rgb(255, 255, 255);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.14) 0px 0.78363px 0.78363px -0.5px, rgba(0, 0, 0, 0.14) 0px 1.91965px 1.91965px -1px, rgba(0, 0, 0, 0.13) 0px 3.63745px 3.63745px -1.5px, rgba(0, 0, 0, 0.13) 0px 6.35004px 6.35004px -2px, rgba(0, 0, 0, 0.12) 0px 11.0519px 11.0519px -2.5px, rgba(0, 0, 0, 0.1) 0px 20.2428px 20.2428px -3px, rgba(0, 0, 0, 0.06) 0px 40px 40px -3.5px;
    opacity: 1;
    padding: 10px;
    width: 46px;
    height: 46px;
    margin-bottom: 35px;
}

.stat-card {
  border-radius: 22px;
    background: #ffffffcf;
    border: 1px solid rgba(7, 40, 44, 0.04);
    padding: 20px;
  backdrop-filter: blur(5px) saturate(180%);
    display: flex;
    flex-direction: column;
    height: 350px;
    justify-content: space-between;
  	transition: 0.3s;
}
.stat-card:hover{
	box-shadow: rgba(0, 0, 0, 0.14) 0px 0.78363px 0.78363px -0.5px, rgba(0, 0, 0, 0.14) 0px 1.91965px 1.91965px -1px, rgba(0, 0, 0, 0.13) 0px 3.63745px 3.63745px -1.5px, rgba(0, 0, 0, 0.13) 0px 6.35004px 6.35004px -2px, rgba(0, 0, 0, 0.12) 0px 11.0519px 11.0519px -2.5px, rgba(0, 0, 0, 0.1) 0px 20.2428px 20.2428px -3px, rgba(0, 0, 0, 0.06) 0px 40px 40px -3.5px;
    opacity: 1;
}

.stat-label {
  font-size: 18px;
    line-height: 120%;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 10px;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 3px;
}

.stat-note {
      font-size: 16px;
    line-height: 120%;
    color: var(--muted);
}

@media (max-width: 980px){
  .stats{
    background-size: 90% 60% !important;
  }
  .stats-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats .block-top{
	width: 100%;
}
}
@media (max-width: 560px){
  .stats-grid{ grid-template-columns: 1fr; }
}





/* CTA */
.cta-section{
    position: relative;
    background: #fafafa;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    margin: 20px 20px;
}

.cta-block{
  position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  	align-items: center;
}

.cta-left{
  padding: 100px 0px;
  z-index: 2;
}

.cta-left h2{
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.cta-left p{
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(0,0,0,.60);
  max-width: 54ch;
}

.cta-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-actions .btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-link{
  color: rgba(0,0,0,.72);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0,0,0,.35);
  padding-bottom: 2px;
}

.cta-link:hover{
  border-bottom-color: rgba(0,0,0,.65);
}


.vp-item video:hover{
  transition: 0.3s;
}

.vp-item video{
	scale:1.05;
}

.cta-video__bg{
  position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
  -webkit-mask-image: linear-gradient(to right, rgb(0 0 0 / 0%) 0%, rgb(255 255 255 / 56%) 50%, rgb(0 0 0) 95%, rgb(255 255 255 / 0%) 100%);
}

.cta-video__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* responsive */
@media (max-width: 980px){
  .cta-left {
    padding: 70px 20px;
  }
  .cta-block{
    grid-template-columns: 1fr;
  }
  .cta-right{
    min-height: 220px;
  }
  .cta-video{
    border-radius: 0;
  }
}
.vp-section{
  padding: 80px 0;
}



.cta-right{
	max-height: 450px;
}

.vp-wrap{
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  padding: 34px;
  min-height: 620px;
  top: -150px
}

/* grid */
.vp-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  height: 100%;
  z-index: 1;
}

.vp-col{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

/* tracks */
.vp-track{
  display: grid;
  gap: 26px;
  will-change: transform;
}

.vp-item{
  border-radius: 28px;
  overflow: hidden;
}

.vp-item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.vp-item{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000; /* чтобы не было белых полей пока видео грузится */
}

/* важно: чтобы видео реально “cover” работало */
.vp-item video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* sizes like in example */
.vp-item--sm{ height: 300px; }
.vp-item--md{ height: 300px; }
.vp-item--lg{ height: 300px; }

.vp-blur--top{
  top: 0;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 20%, transparent 100%);
}

.vp-blur--bottom{
  bottom: 0;
  mask-image: linear-gradient(to top, #000 20%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #000 20%, transparent 100%);
}

/* responsive */
@media (max-width: 980px){
  .vp-wrap{ padding: 0px; min-height: 520px; }
  .vp-grid{ gap: 14px; }
  .vp-track{ gap: 14px; }
  .vp-item--sm{ height: 140px; }
  .vp-item--md{ height: 220px; }
  .vp-item--lg{ height: 320px; }
}

@media (max-width: 640px){
  .vp-col{ border-radius: 22px; }
  .cta-right{display: none}
}




/* TESTIMONIALS */

.testimonals{
    padding: 50px 0px;
    background: #fff;
    margin-top: -200px;
    position: relative;
    border-radius: 50px;
    z-index: 10;
}
.slick-track {
    display: flex !important;
    gap: 20px;
}
.testimonials-slider { width: 100%;     padding: 0px 50px;}

/* чтобы карточки не прилипали к краям */
.testimonials-slider .slick-slide { 
    padding: 20px 20px;
    position: relative;
    background: #fafafa;
    border-radius: 30px;
	display: flex;
    flex-direction: column;
}
.testimonials-slider .slick-list { margin: 0 -10px; }

/* точки */
.testimonials-slider .slick-dots{
  margin-top: 35px;
  display: flex !important;
  gap: 10px;
  justify-content: center;
  padding: 0;
}
.testimonials-slider .slick-dots li{ list-style: none; }
.testimonials-slider .slick-dots button{
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.18);
  padding: 0;
  cursor: pointer;
}
.testimonials-slider .slick-dots .slick-active button{
  background: rgba(0,0,0,.55);
}

/* стрелки (если включишь arrows:true) */
.testimonials-slider .slick-arrow{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
  z-index: 2;
}
.testimonials-slider { touch-action: pan-y; }

.testimonials-head{
  display:flex;
  justify-content:flex-end;
  margin: -40px 0 0px;
}

.testimonials-counter{
  display:inline-flex;
  align-items:baseline;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 700;
}

.testimonials-counter .t-cur{ font-size: 16px; }
.testimonials-counter .t-total{ font-size: 14px; opacity:.6; }
.testimonials-counter .t-sep{ opacity:.45; }

.testimonials-wrap{
  position: relative;
  width: 100%;
}

.t-arrow{
  position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
        border: none;
    background: #fafafa;
}
.t-arrow svg{
	fill: #000;
    color: #000;
}

.t-prev{ left: -18px; }
.t-next{ right: -18px; }

.t-arrow.slick-disabled{
  opacity: .35;
  pointer-events: none;
}

/* чтобы стрелки не перекрывали карточки на узких экранах */
@media (max-width: 980px){
  .t-prev{ left: -10px; }
  .t-next{ right: -10px; }
}

.testimonial-author{
	margin-top: 20px;
}
.testimonial-role{
	color: #818181;
}
/* расстояние между карточками */
.testimonials-slider .slick-list  { margin: 0 -12px; }   /* компенсация краёв */

.faq-sides h2{
	width: 100%;
}



/* FAQ */
.faq{
	padding: 80px 0px 0px;
}

.faq-sides{
	display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    gap: 30px;
}
.faq-sides p{
	    margin: 0;
}
.faq-sides .block-top{
    display: flex;
    flex-direction: column;
    max-width: 830px;
    align-items: center;
    text-align: center;
    margin: auto;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(7, 40, 44, 0.06);
}

.faq-question {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 20px;
  line-height: 120%;
}

.faq-toggle {
  width: 50px;
    height: 50px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* FAQ answer animation */
.faq-answer{
  padding: 0 16px;
  font-weight: 300;
    font-size: 16px;
    line-height: 120%;
  color: var(--muted);

  /* animation */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease, padding .35s ease;
  will-change: max-height, opacity;
}

/* opened state */
.faq-item.open .faq-answer{
  opacity: 1;
	
  padding: 0 16px 14px;
  max-height: 500px;
  margin-bottom: 20px;
}

/* optional: toggle animation */
.faq-toggle{
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.faq-item.open .faq-toggle{
  background: #fafafa;
  border-color: #efefef;
  transform: rotate(0deg);
}



/* =========================
   FINAL CTA + FORM
   ========================= */

.final-cta{
      position: relative;
    padding: 72px 30px 20px;
    overflow: hidden;
}

.final-cta .container{
  position: relative;
  z-index: 2;
}

/* video overlay wrapper */
.final-cta .hero-overlay{
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  min-height: 520px;
  padding: 100px 0px;
  display: flex;
  align-items: center;
}

.final-cta .hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  opacity: 1;
}

.final-cta .hero-blur{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 20% 30%, rgba(0,0,0,.25), rgba(0,0,0,0) 60%),
    linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.final-box{
  position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 100px;
    align-items: start;
    justify-content: space-evenly;
    justify-items: start;
}

.final-title{
  margin: 0 0 12px;
  color: #fff;
  font-weight: 700;
  width: 100%;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.12;
}

.final-text{
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: 16px;
  max-width: 62ch;
}

/* form */
.final-form{
  background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 22px;
}

.final-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.final-field label{
  display: block;
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
  min-width: 470px;
}

.final-input{
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.95);
  outline: none;
  font-weight: 200;
  font-size: 15px;
  color: #12151c;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.final-input::placeholder{
  color: rgba(18,21,28,.45);
}

.final-input:focus{
  border-color: rgba(84,113,115,.55);
  box-shadow: 0 0 0 4px rgba(84,113,115,.16);
  background: #fff;
}

.final-actions{
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.final-cta .btn.btn-primary{
  height: 54px;
  border-radius: 16px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;

  background: linear-gradient(135deg, #b59870, #547173);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}

.final-cta .btn.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
  filter: brightness(1.02);
}

.final-cta .btn.btn-primary:active{
  transform: translateY(0);
}

.final-note{
      font-size: 12px;
    line-height: 100%;
    color: #ddd;
    margin-top: 20px;
}

.contacts-bottom a{
	    background: #fff;
    backdrop-filter: blur(3px);
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
  	transition: 0.3s;
}

.contacts-bottom a:hover{
	scale: 1.05;
}

.contacts-bottom{
display: flex;
    flex-direction: row;
    gap: 10px;
}
.contacts-bottom svg{
	width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
}
.cont-left{
	display: flex;
    height: 420px;
    flex-direction: column;
    justify-content: space-between;
}

.sub-footer{
		position: absolute;
    bottom: 30px;	
}
.privacy{
    color: #fff;
}
/* responsive */
@media (max-width: 980px){
  .final-field label {
    font-size: 10px;
}
  .hero-content {
    padding: 50px 0px 70px;
  }
  .round {
    position: absolute;
    right: 0px;
    width: 400px;
    height: 100px;
  }
  .step-card {
    min-height: 380px;
}
  .steps-grid {
    padding-bottom: 80px;
  }
  .cta-right {
    display: none;
}
  h2{
  width: 100%;
  }
  .strip {
    width: 150px;
  }
  .strip-2 {
    width: 240px;
  }
  .step-4 {
    top: 240px;
    right: -90px !important;
}
  .header-inner {
    padding: 16px 0px;
  }
  .first{
  	    padding: 0px !important;
  }
  .final-cta {
    padding: 60px 20px;
}

  .final-cta .hero-overlay{
    padding:50px 20px;
    min-height: auto;
  }
  .cont-left {
    height: 100%;
    gap: 30px;
}
  .final-cta .container {
    padding: 0;
}
  .final-box {
    gap: 80px;
  }
}

@media (max-width: 520px){
  .final-cta .hero-overlay{ border-radius: 26px; }
  .final-box{ border-radius: 22px; }
  .final-form{ padding: 16px; border-radius: 18px; }
  .final-input{ height: 50px; border-radius: 14px; }
  .final-cta .btn.btn-primary{ height: 52px; border-radius: 14px; }
}




/* RESPONSIVE */

@media (max-width: 992px) {
  .btn-outline:hover svg {
    margin-left: 0px;
    transform: rotate(45deg);
}
  
  .tiers-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .manager-block,
  .calc-layout,
  .final-box {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .header-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  
  .round {
  position: relative;
    width: 100%;
    border-radius: 25px;
    bottom: 20px;
    height: 70px;
    background: #ffffff29;
    backdrop-filter: blur(4px);
}
  .round span {
    color: #fff;
}
  .ava {
    justify-content: flex-start;
}
  .avatars {
    width: 100%;
    justify-content: space-between;
    padding: 0px 20px;
}
.ro-1, .ro-2{
  display: none;
}
  .hero-block {
    padding: 30px 18px 26px;
  }
  .tiers-layout {
    grid-template-columns: minmax(0, 1fr);
  }
 
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-mini-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .final-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .how {
    padding: 50px 0px 0px;
}
.steps-grid {
    padding-bottom: 40px;
}
.pm-content h2 {
    width: 100%;
}
}





/* ===== Pain block ===== */
.pain{
    padding: 70px 0 35px;
}

.pain__head{
  max-width: 820px;
}

.pain__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.6);
}

.pain__grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pain-card{
  position: relative;
  overflow: hidden;
}

.pain-card__top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.pain-card__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.9);
  font-size: 20px;
}

.pain-card__title{
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.pain-card__text{
  margin: 0 0 14px;
  color: rgba(17,24,39,.82);
  font-size: 16px;
  line-height: 1.55;
}

.pain-card__quote{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 20px;
  background: rgba(17,24,39,.04);
  border: 1px solid rgba(17,24,39,.07);
  color: rgba(17,24,39,.78);
  line-height: 1.5;
  font-size: 14px;
}

.pain-card__quoteMark{
  font-size: 28px;
  line-height: 1;
  transform: translateY(-2px);
  color: rgba(17,24,39,.35);
  font-weight: 900;
}

.pain-card--accent{
  border-color: rgba(181,152,112,.35);
}

.pain-card--accent .pain-card__icon{
  border-color: rgba(181,152,112,.35);
}






#toastWrap{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast{
  pointer-events: none;
  width: min(360px, calc(100vw - 36px));
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  transform: translateY(12px);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
  backdrop-filter: blur(10px);
}

.toast.is-show{
  opacity: 1;
  transform: translateY(0);
}

.toast.is-hide{
  opacity: 0;
  transform: translateY(10px);
}

.toast__title{
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 4px;
}

.toast__text{
  font-size: 13px;
  line-height: 1.35;
  opacity: .85;
}

.toast--error{
  border-color: rgba(220,38,38,.25);
}



.final-field{
  position: relative;
}

.final-input.is-invalid{
  border-color: rgba(220,38,38,.55) !important;
  box-shadow: 0 0 0 4px rgba(220,38,38,.10);
}

.final-input.is-valid{
  border-color: rgba(16,185,129,.45) !important;
  box-shadow: 0 0 0 4px rgba(16,185,129,.10);
}

.final-error{
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.25;
  color: #fbb;
}

.final-hint{
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.25;
  color: rgba(10,27,31,.6);
}

/* лёгкая анимация "потрясти" при сабмите с ошибками */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}
.final-input.is-shake{
  animation: shake .28s ease;
}

/* добавь стили для чекбокса “как у input” */

.final-note{ position: relative; } /* чтобы ошибка красиво жила рядом */

.consent-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
  line-height:1.35;
}

.consent-row input{
  margin-top:3px;
  flex:0 0 auto;
}

/* аналог .final-input.is-invalid/.is-valid */
.consent-row.is-invalid{
  border: 1px solid rgba(220,38,38,.55);
  box-shadow: 0 0 0 4px rgba(220,38,38,.10);
  border-radius: 12px;
  padding: 10px 12px;
}

.consent-row.is-valid{
  border: 1px solid rgba(16,185,129,.45);
  box-shadow: 0 0 0 4px rgba(16,185,129,.10);
  border-radius: 12px;
  padding: 10px 12px;
}

/* чтобы ошибка выглядела как .final-error */
.final-error--consent{
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.25;
  color: #fbb;
}

/* “потрясти” как у input */
.consent-row.is-shake{
  animation: shake .28s ease;
}


/* --- Consent checkbox: white check in black box --- */
.consent-row{
  display:flex;
  gap:12px;
  align-items:flex-start;
  cursor:pointer;
  user-select:none;
}

.consent-row input[type="checkbox"]{
  -webkit-appearance:none;
  appearance:none;
  width:16px;
  height:16px;
  flex:0 0 16px;
  border: 2px solid #111;
  border-radius: 6px;
  background: transparent;
  display:grid;
  place-items:center;
  margin-top:2px; /* чуть ровнее с текстом */
  transition: background .15s ease, border-color .15s ease, transform .08s ease;
}

.consent-row input[type="checkbox"]::after{
  content:"";
  width:3px;
  height:8px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform: rotate(45deg) translateY(-1px);
  opacity:0;
  transition: opacity .12s ease;
}

.consent-row input[type="checkbox"]:checked{
  background:#111;         /* черный бокс */
  border-color:#111;
}

.consent-row input[type="checkbox"]:checked::after{
  opacity:1;               /* белая галочка */
}

.consent-row input[type="checkbox"]:focus-visible{
  outline:3px solid rgba(17,17,17,.25);
  outline-offset:3px;
}

.consent-row input[type="checkbox"]:active{
  transform: scale(0.98);
}

.consent-row a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* optional: disabled state */
.consent-row input[type="checkbox"]:disabled{
  opacity:.55;
  cursor:not-allowed;
}
.consent-row:has(input:disabled){
  cursor:not-allowed;
}