/*@import url("/fonts/roboto-local.css");*/

html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul[class] {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* ====== БАЗА ====== */


body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.cover{
  overflow-x: clip;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
a:hover{
  color: var(--dark-green);
  transition: var(--transition);
}
:root {
  --container: min(1200px, 92vw);
  --radius: 20px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --green: #31b939;
  --dark-green: #6a946d;
  --text: #000000;
  --light-gray: #ebecee;
  --gray: #505050;
  --dark-gray: #3a3a3a;
  --light-green: #bad7bb;
  --light-green-bg: #e1e3e2;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --transition: all 0.15s ease-in-out;
}

.flex {
  display: flex;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-right {
  justify-content: flex-end;
  align-items: end;
}
.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.container {
  width: var(--container);
  margin: 0 auto;
}
.section {
  padding: clamp(32px, 5vw, 72px) 0;
  position: relative;
}
.h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 800;
}
.h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
}
.h3 {
  font-size: clamp(22px, 2.2vw, 24px);
  margin: 0 0 8px;
  font-weight: 700;
}
.subtitle {
  font-size: clamp(18px, 0.5rem + 2vw, 24px);
  line-height: 1.5;
  margin: 0 0 8px;
  color: var(--text);
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.block-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.2;
}
.text-highlight {
  color: var(--dark-green);
}
.lead {
  margin-top: 20px;
  font-size: 24px;
  color: var(--dark-gray);
}
.muted {
  color: var(--dark-gray);
}
.btn, .btn:active, .btn:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 40px;
  border-radius: var(--radius) !important;
  background: var(--green) !important;
  color: #fff !important;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  line-height: 1;
  border: unset !important;

}
.btn:hover {
  background: var(--dark-green) !important;
}
.btn--ghost {
  background: transparent;
  color: var(--green);
}
.btn--ghost:hover {
  background: var(--light-green);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--light-gray);
  font-size: 14px;
}
.card {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
}
.grid {
  display: grid;
  gap: clamp(16px, 2.5vw, 28px);
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.center {
  text-align: center;
}
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #00a700;
  outline: 0;
  box-shadow: none;
}


/* ====== ШАПКА ====== */
.topbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 18px;
}
.logo img {
  border-radius: 8px;
  object-fit: cover;
}
.soc-icon {
  width: 30px;
  height: 30px;
}
.whatsapp-icon {
  width: 25px;
  height: 25px;
}
.underline {
  text-decoration: underline;
}
.contact-link {
  color: var(--green);
  font-size: 14px;
  line-height: 1;
  text-decoration: underline;
  cursor: pointer;
}
.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a {
  color: #1d1f23;
  font-weight: 600;
}
.contacts {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--dark-gray);
  font-size: 14px;
}

/* ====== HERO ====== */
.hero {
  background: var(--light-gray);
  border-radius: 40px;
  margin: 0 20px;
  position: relative;
}
.hero__bg {
  height: 100%;
  position: absolute;
  top: 30px;
  right: -20px;
  z-index: 1;
}
.hero__bg img {
  max-height: 100%;
}
.hero__wrap {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.badge {
  padding: 8px 12px;
  color: var(--dark-green);
  background: var(--light-green-bg);
  border-radius: 10px;
  font-size: 24px;
  font-weight: 300;
}
.hero__cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero__img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  /*overflow: hidden;*/
  background: #e9eef3;
  box-shadow: var(--shadow);
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.podbor__wrap {
  display: flex;
  gap: 12px;
  align-items: end;
  margin-left: 20px;
  max-width: 400px;
}
.podbor__text {
  margin-bottom: -15px;
  line-height: 1;
  font-style: italic;
}

/* ====== STATS ====== */
.stats {
  padding: 80px 0;
  background: #fff;
}
.stats__layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
}

/* Large cards (left side) */
.stats__large {
  display: flex;
  gap: 20px;
  flex: 1;
}
.large-card {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 100px 30px 80px;
  position: relative;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  gap: 10px;
}
.large-card__icon {
  position: absolute;
  top: -50px;
  left: 40%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.large-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.large-card__number {
  font-size: 48px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 8px;
}
.large-card__text {
  font-size: 18px;
  color: #6c6c6c;
  line-height: 1.3;
}

/* Small cards (right side) */
.stats__small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1;
}
.small-card {
  text-align: left;
  padding: 0;
}

/* ====== СТАТЫ/ПРЕИМУЩЕСТВА ====== */
.features {
  margin-top: 20px;
}
.feat {
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--light-gray);
}
.feat__num {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.feat__text {
  font-size: 14px;
  color: var(--dark-gray);
}

/* ====== КАКИЕ ДОМА ====== */
.types {
  background: #fff;
}
.types__header {
  text-align: center;
  margin-bottom: 40px;
}
.types__subtitle {
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  margin: 0 0 20px;
}
.types__wrap {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
  background: url(/files/assets/info-galka.png) no-repeat 35% 0%;
  align-items: center;
}
.box {
  border-radius: var(--radius);
  padding: 18px;
}
.radio {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: baseline;
}
.radio__label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 10px;
  font-size: 24px;
  font-weight: 300;
  border: 1px solid var(--light-gray);
  border-radius: 20px 10px 10px 20px;
  background: var(--light-gray);
  cursor: pointer;
  transition: var(--transition);
}
.radio__label:hover {
  border-color: var(--green);
}
.radio__label input {
  display: none;
}
.radio__label input:checked + .radio__icon + * {
  /* This targets the text after the icon when radio is checked */
}
.radio__label:has(input:checked) {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.radio__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-left: 1px;
  margin-right: 3px;
}
.list-check {
  display: grid;
  gap: 40px;
}
.list-check li {
  list-style: none;
  display: flex;
  gap: 20px;
}
.info-img {
  width: 80px;
  height: 80px;
}

/* ====== ГАЛЕРЕЯ (видео-эскизы) ====== */
.gallery .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  /* background: #e9eef3; */
  /* box-shadow: var(--shadow); */
}
.gallery .thumb .play {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
}
.gallery .thumb .play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 14px solid var(--green);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.gallery .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /*aspect-ratio: 16/9;*/
}
.gallery .subtitle.center {
  margin-top: 20px;
  color: var(--light-gray);
}
.gallery .subtitle.center span {
  color: var(--text);
  font-weight: 200;
}



/* ====== MODAL ====== */
.modal .modal-content{
  position: relative;
  padding-bottom: 10px;
}
.modal .btn-close{
  position: absolute;
  top: 10px;
  right: 10px;
  background: #000;
  z-index: 10;
  color: #fff;
  line-height: 1px;
  padding: 5px;
}
.modal .title {
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}
.modal .title h5{
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 800;
}
.modal .form{
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: var(--radius);
}

  /* ====== QUIZ MODAL ====== */

.modal .m_quiz .title{
  padding: 20px 0;
  margin-bottom: 0;
}


.quiz p.qst{
  font-size: 18px;
  color: var(--dark-green);
}

.quiz h4{
  font-size: 25px;
  margin-bottom: 20px;
}

.quiz .questions{
  margin-bottom: 30px;
}
.quiz .q_block{
  border-radius: 8px;
  border: 1px solid #000;
  padding: 0px 25px;
  cursor: pointer;
  font-size: 25px;
  font-weight: 300;
}
.quiz .q_block:first-child {
  margin-left: 0;
}
.quiz .q_block_input {
  width: 100%;
}
.quiz .q_block.q_b_active {
  border-color: #00a700;
}
.quiz .q_block.q_b_active label {
  color: #00a700;
}
.quiz .q_hide {
  display: none;
}
.quiz .etaps {

}
.quiz .etap {
  background: #919191;
  padding: 3px 20px;
  margin-left: 10px;
}
.quiz .etap:first-child {
  margin-left: 0;
}.quiz
.etaps .etap.e_active {
  background: #00a700 !important;
}
.quiz .etap_p {
  font-size: 0.8em !important;
  margin-top: 5px;
  margin-bottom: 0;
}
.quiz .footer{
  padding: 0;
  margin: 0;
}
.quiz .footer .btn {
  max-width: 150px;
  width: 100%;
  padding: 7px 20px;
  text-transform: unset;
  font-weight: 300;
  font-size: 16px;
}


.quiz .form-check-input:checked {
  background-color: #00a700;
  border-color: #00a700;
}
.quiz .form-check-input[type="radio"] {
  display: none;
}
.quiz .form-check {
  padding: 0;
}
.quiz .form-check label {
  cursor: pointer;
  font-size: 20px;
}
.quiz .form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: none
}


.qestions_blocks {
  flex-wrap: wrap;
  gap: 10px;
}


p.politics{
  font-size: 12px !important;
  text-align: center;
}

p.politics a{
  color: var(--green);
}
p.privacy-text {
  /* Указываем элементу начаться со 2-й линии колонок
    и закончиться на 5-й.
    Таким образом, он займет место под двумя полями и кнопкой.
  */
  grid-column: 1 / 5;

  /* Дополнительно центрируем сам текст внутри этого элемента */
  text-align: center;
  font-size: 14px; /* Примерный размер шрифта */
  color: #666;    /* Примерный цвет */
}



/* ====== SLICK SLIDER CUSTOMIZATION ====== */
@media (max-width: 767px) {
  .slick-dots li button::before {
    content: none;
  }

  .gallery-slider.slick-initialized {
    margin: 0 -20px;
  }

  .gallery-slider .slick-slide {
    /* padding: 0 10px; */
  }

  .gallery-slider .slick-dots {
    padding: 20px 0;
    text-align: center;
    position: static;
  }

  .gallery-slider .slick-dots li {
    margin: 0 5px;
    width: 16px;
    height: 16px;
  }

  .gallery-slider .slick-dots li button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    font-size: 0;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
  }

  .gallery-slider .slick-dots li.slick-active button {
    background: var(--green);
  }

  .gallery-slider .slick-dots li button:hover {
    background: var(--dark-green);
  }
}

/* ====== КАТАЛОГ CTA ====== */
#catalog .muted {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 30px;
}
.catalogcta__wrap {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

/* ====== КОМАНДА ====== */
.team {
  background: #fff;
}

/* Team cards */
.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.team-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow);
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.team-card__info {
  flex: 1;
}

.team-card__name {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0px 0;
}

.team-card__role {
  color: var(--green);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 4px 0;
}

.team-card__phone {
  color: var(--dark-gray);
  font-size: 14px;
  margin: 0;
}

/* Founder section */
.founder-section {
  position: relative;
  box-shadow: 0 0 78px 20px #f8f9fa;
}

.founder-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 6px;
  height: 120px;
  background: #e0e0e0;
  transform: translateX(-50%);
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  padding: 40px 20px;
}

.founder-image {
  display: flex;
  justify-content: center;
}

.founder-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.founder-info {
  padding: 20px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.founder-name {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.founder-title {
  color: var(--dark-gray);
  font-size: 16px;
  font-style: italic;
  margin: 0 0 24px 0;
}

.founder-text {
  margin-bottom: 24px;
  position: relative;
  padding-right: 80px;
}

.founder-text::before {
  content: url("/files/assets/quote.png");
  position: absolute;
  right: 0px;
  top: -10px;
}

.founder-text::after {
  content: url("/files/assets/quote.png");
  position: absolute;
  left: -50px;
  bottom: -30px;
  transform: rotate(180deg);
}

.founder-text p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.founder-invitation {
  color: var(--green);
  font-weight: 500;
}

.founder-signup {
  color: var(--dark-gray);
}

.founder-signup .highlight {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}



.founder-social {
  display: flex;
  justify-content: end;
  gap: 12px;
  margin-top: auto;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
}

.social-link img {
}

.chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.chip--person {
  background: #fff;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow);
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  background: #dfe7e8;
}
.founder {
  display: grid;
  gap: 20px;
  grid-template-columns: 240px 1fr;
  align-items: center;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.quote {
  font-size: 16px;
  color: #2b2f36;
}

/* ====== С ЧЕГО НАЧАТЬ ====== */
.start .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  margin-top: 60px;
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 25px;

}
.start .form-row .h3 {
  margin: 0;
  align-self: center;
}
.start .form-row .title p{
  font-size: 11px;
  font-weight: 300;
}
.start .h2 {
  text-transform: none;
}
.start button {
  border: 0;
  outline: 0;
}
.input {
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  padding: 14px 12px;
  font: inherit;
}
.cta-cards {
  display: grid;
  gap: 30px;
  margin-top: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cta-card {
  padding: 25px;
  border: 1px solid var(--light-gray);
  background: var(--light-gray);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
}
.cta-card .h3 {
  margin: 0;
}
.cta-card .btn {
  margin-top: 10px;
  justify-self: start;
  max-height: 35px;
}

/* ====== ФУТЕР ====== */
.footer {
  padding: 28px 0 20px;
  margin-top: 40px;
  overflow: hidden;
}

.footer .container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  /* flex-wrap: wrap; */
}

.footer__img {
  width: 100%;
  flex: 1;
  margin-bottom: -70px;
  max-width: 500px;
}

.footer__images,
.footer__images img {
  min-height: 0;
  flex: 1;
}

.footer h3 {
  max-width: 240px;
}

.footer__right {
  height: 100%;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.footer__call {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer__call p {
  font-size: 24px;
}

.footer .whatsapp-icon {
  width: 30px;
  height: 30px;
}

/* ====== КУСТИКИ И ПРОЧЯЯ хНЯ ====== */

.bush {
  position: absolute;
  width: 500px;
  z-index: 1;
}

.bush-1 {
  top: -150px;
  /* left: -300px; */
  right: 90vw;
}

.bush-2 {
  top: -300px;
  /* right: -300px; */
  left: 86vw;
  filter: blur(2px);
}

.bush-3 {
  top: 75px;
  /* left: -285px; */
  right: 90vw;
  filter: blur(1px);
}

.bush-4 {
  top: -100px;
  /* right: -285px; */
  left: 86vw;
  transform: rotate(-90deg);
  filter: blur(1px);
}

.bg-circle {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--light-gray);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 0;
}
.bg-circle-1 {
  left: 90vw;
  top: -250px;
}
.bg-circle-2 {
  left: 85vw;
  top: -50px;
}
.bg-circle-3 {
  top: 0px;
  right: 80vw;
}
.bg-circle-4 {
  top: 250px;
  right: 90vw;
}

.bg-heart-1 {
  position: absolute;
  left: 10%;
  top: 0;
  width: 80px;
  transform: rotate(66deg);
}

.bg-heart-2 {
  position: absolute;
  top: 35%;
  left: 4%;
  width: 50px;
  transform: rotate(30deg);
}

.bg-heart-3 {
  position: absolute;
  left: 5%;
  top: 70%;
}

@media (max-width: 768px) {
  .bg-circle,
  .bush-2,
  .bg-heart-2 {
    display: none;
  }

  .bg-heart-1 {
    left: 0;
    top: 90px;
    transform: rotate(0deg);
  }
  .bg-heart-3 {
    position: absolute;
    left: 80vw;
    top: 60px;
    transform: rotate(90deg);
    width: 150px;
    @media (max-width: 480px) {
      left: 82vw;
      top: 20px;
    }
  }
}

/* ====== РЕСПОНС ====== */
.pc-hide {
  display: none;
}

@media (max-width: 1024px) {
  .hero__wrap {
    grid-template-columns: 1fr;
  }
  .catalogcta__wrap {
    grid-template-columns: 1fr;
  }
  .types__wrap {
    grid-template-columns: 1fr;
  }
  .founder {
    grid-template-columns: 1fr;
  }
  .founder-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-section::before {
    display: none;
  }
  .stats__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stats__small {
    grid-template-columns: 1fr 1fr;
  }
  .team-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .mob-hide {
    display: none;
  }
  .pc-hide {
    display: inherit;
  }
  .header__contact {
    margin-left: auto;
    margin-right: 10px;
  }

  .hero {
    margin: 0;
    /*overflow: hidden;*/
    border-radius: 40px 40px 0 40px;
    padding-bottom: 80px;
  }
  .hero__wrap {
    z-index: 1;
    position: relative;
  }
  .podbor__wrap img {
    width: 30px;
  }
  .podbor__text {
    font-size: 12px;
    max-width: 160px;
  }
  .hero__bg {
    height: 200px;
    right: -100px;
    bottom: 0;
    top: unset;
  }
  .badge {
    font-size: 16px;

  }
  .lead {
    font-size: 16px;
  }
  .bush-1 {
    width: 120px;
    z-index: 0;
    left: 0;
    top: 20px;
    -webkit-filter: blur(1px);
  }
  .stats__layout {
    flex-direction: column;
    gap: 30px;
  }
  .stats__large {
    width: 100%;
  }
  .large-card {
    padding: 50px 15px 40px;
  }
  .large-card__icon {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 35%;
  }
  .large-card__number {
    font-size: 32px;
  }
  .large-card__text {
    font-size: 16px;
  }
  .stats__small {
    gap: 20px;
  }
  .types__wrap {
    background-position: right 20px top 5px;
    background-size: 100px;
  }
  .box {
    padding: 0;
  }
  .block-subtitle {
    font-weight: 500;
  }
  .muted {
    font-weight: 300;
  }
  .gallery .subtitle.center span {
    font-size: 14px;
  }
  .catalogcta__content {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  #catalog .h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  #catalog img {
    margin: 0 auto -20px;
  }
  #catalog .btn {
    padding: 16px 40px;
    margin-left: -20px;
  }
  #catalog .muted{
    font-size: clamp(12px, 5vw, 21px);
  }
  .founder-info {
    padding: 10px;
  }
  .founder-content {
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
  }
  .founder-name,
  .founder-title {
    text-align: center;
  }
  .founder-image img {
    max-width: 100%;
  }
  .founder-text {
    padding-right: 0px;
  }
  .founder-text::before {
    right: 0px;
    top: -10px;
  }
  .founder-text::after {
    left: -20px;
    bottom: -30px;
    transform: rotate(180deg);
  }
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-cards {
    grid-template-columns: 1fr;
  }
  .cta-cards .btn {
    padding: 12px 40px;
  }
  .section {
    /*overflow: hidden;*/
  }
  .start .form-row {
    grid-template-columns: 1fr ;
  }
  p.privacy-text {
    /* На мобилке текст также занимает всю ширину */
    grid-column: 1;
    text-align: center;
    order: 5; /* Можно задать порядок, если хотите, чтобы текст был в конце формы, например */
  }
  .nav {
    display: none;
  }
  .team-card {
    /* flex-direction: column;
    text-align: center; */
  }
  .team-card__name {
    line-height: 1.2;
  }
  .team-card__role {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
  }
  .team-card__avatar {
    width: 100px;
    height: 100px;
  }
  .team-card__phone {
  }
  .footer {
    margin-top: 0;
  }
  .footer .container {
    flex-direction: column;
  }
  .footer .gap-20 {
    width: 100%;
    align-items: center;
  }
  .footer__images,
  .footer__images img {
    min-height: 0;
    flex: 1;
  }
  .footer__img {
    order: 1;
  }
  .footer__right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  .footer__call {
    width: 100%;
  }
  .footer h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
  }
  .footer .whatsapp-icon {
    width: 36px;
    height: 36px;
  }
}
