:root{
  --accent-gold: #debc73;
  --accent-white: #fffefe;
  --accent-black: #151515;
  --accent-grey: #303030;
}

html, body {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 20px;
  background: var(--accent-black);
  line-height: 1.4;
}
html {
  scroll-behavior: smooth;
}


/* html, body {

  scrollbar-width: none;
  
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}
 */

.wrapper {
  min-height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

.body--opened-menu{
  position: fixed;
  overflow: hidden;
}

.title{
    font-family: serif;
    font-size: 55px;
    font-weight: 600;
    line-height: 1.1;
}
textarea {
    resize:none
}
/* --------  scroll ----------*/

/* ::-webkit-scrollbar {
    width: 2px; 
    height: 2px; 
}

::-webkit-scrollbar-track {
    background: var(--accent-black);
    border-radius: 1px;
}

::-webkit-scrollbar-thumb {
background: var(--accent-gold); 
}

::-webkit-scrollbar-thumb:hover {
    background: #a96264;
} */



/* ========================================== */


.header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000000c8;
}

.header{
  background: var(--accent-black);
  position: relative;
}
.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--accent-white);
  padding: 30px 0px;
  margin-bottom: 30px;
}
.header__logo {
  font-family: serif;
  font-size: 40px;
  color: var(--accent-gold);
}
.header__nav {
}
.nav {
  display: flex;
  gap: 32px;
  justify-content: space-between;
}
.nav__link {
}
.header__social {
}
.social {
  display: flex;
  gap: 20px;
}
.social__item {
}
.header__button {
}
.button {
  padding: 10px 15px;
  /* font-weight:600; */
  font-size: 20px;
  color: var(--accent-gold);
  background: transparent;
  border: 2px solid var(--accent-gold);
  border-radius: 10px;
  transition: all .3s;
}

.button:hover{
  transform: translateY(-3px);
  background: #00000009;
  border-color: #dcc187;
  color: #dcc187;
}


/* ------------ */

.hero {
  color: var(--accent-white);
  padding-bottom: 120px;
  /* border-bottom: 50%; */
}
.hero__inner {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.hero__info {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}
.hero__title {
  margin-bottom:15px;
  max-width: 815px;
}
.hero__title--gold{
  color: var(--accent-gold);
  font-weight: 700;
  font-style:unset;
}
.hero__descr {
  max-width: 650px;
  margin-bottom: 50px;
}
.hero__form {
  width: fit-content;
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}

.hero__input{
  padding: 15px 20px;
  background: transparent;
  border: 2px solid var(--accent-white);
  border-radius: 10px;
  transition: border-color .3s;
  color: var(--accent-white);
  font-size: 20px;
}
.hero__input:focus{
  border-color: var(--accent-gold);
}
.hero__button {
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 20px;
}
.hero__grid {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
      width: fit-content;
}
.hero__item {
  padding: 40px 20px;
  width: fit-content;
  max-width: 320px;
  
  display: flex;
  align-items: center;

  background: transparent;
  border: 4px solid var(--accent-gold);
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;

  font-size: 18px;

  transition: all .3s;
}
.hero__img {
  border-radius: 10px;
  overflow: hidden;
}
.hero__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__item:hover{
  box-shadow: 0px 0px 10px var(--accent-gold);
}

/* ---- mobile ------ */

.nav--mobile{
  position: fixed;
  right: 0px;
  top: 0px;
  z-index: 10;

  width: fit-content;
  height: 100%;
  padding: 60px 50px 50px 50px;

  background: var(--accent-black);

  transform: translateX(100%);
  transition: all .5s;
}

.nav--mobile--active{
  transform: translateX(0%);
}

.nav__list--mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.nav__item--mobile {
  color: var(--accent-white);
  font-size: 25px;
}
.social--mobile {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.social li, .social li svg path{
  transition: all .3s;
}
.social li:hover{
  transform: translateY(-7%);
}

.social li:hover svg path{
  fill: var(--accent-gold);
}

.social li{
  position: relative;
}

.social li a{
  position: absolute;
  inset: 0;
}

.burger__menu{
  display: none;
  z-index: 11;
  padding: 30px;
  width: fit-content;
  position: relative;
  /* top: 5px;
  right: 20px; */
}
.burger__menu span,.burger__menu span::before,.burger__menu span::after{
  display: block;
  width: 30px;
  height: 3px;
  background: var(--accent-gold);
  transition: all .3s;
} 
.burger__menu span::before,.burger__menu span::after{
  position: absolute;
} 
.burger__menu span{
  position: relative;
}
.burger__menu span::before{
  content: "";
  top: -10px;
}
.burger__menu span::after{
  content: "";
  bottom: -10px;
}

.burger__menu--active span{
  background: transparent;
}

.burger__menu--active span::before{
  content: "";
  top: 0px;
  transform: rotate(-45deg);
}
.burger__menu--active span::after{
  content: "";
  bottom: 0px;
  transform: rotate(45deg);
}

/* =================== team ======================= */
.team{
  /* background: #dcdede; */
  padding: 140px 0px;
  /* margin-top: 200px; */
  color: var(--accent-white);
}

.team__slider{
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
}

.team__title {
  line-height: 100%;
  color: var(--accent-gold);
  margin-bottom: 130px;
}

.team__descr{
  margin-bottom: 30px;
}



/* --- left --- */
.team__left{
  max-width: 578px;
}
.team__slide-left{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  max-width: 176px;
  text-align: center;
}
.team__photo-left{
  width: 176px;
  height: 176px;
  border-radius: 100%;
  overflow: hidden;
  transition: all .4s;
  border: 2px solid  transparent;
}
.team__photo-left img{
  width: 100%;
}

.team__slide-left span{
  font-weight: 600;
  font-size: 18px;
  transition: all .4s;
}

.team__scrollbar {
  width: 100%; /* Во всю ширину родителя */
  height: 8px; /* Высота дорожки */
  background-color: var(--accent-grey); /* Цвет дорожки (фон) */
  border-radius: 4px;
  position: relative;
  margin-top: 63px;
}

.team__scrollbar .swiper-scrollbar-drag {
  background-color: var(--accent-gold); /* Акцентный цвет ползунка */
  border-radius: 4px;
  cursor: pointer;
}


.active-left .team__photo-left{
  border-color: var(--accent-gold);
}
.active-left  span{
  color: var(--accent-gold);
}
/* --- right --- */

.team__inner-right{
  position: relative;
  /* max-width: 702px; */
  height: 620px;
}

.team__slide-right {
  position: relative;
  width: 700px;
  height: 0px;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.6s ease;
}

.team__slide-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* Центрирование изображения */
}
.active{
  height: 620px;
  transition-delay: 0.6s;
  margin: auto 0px;
}

.team__photo-descr{
  display: grid;
  grid-template-columns: repeat(2, .5fr);
  position: absolute;
  bottom: 50px;
  padding: 10px 30px;
  width: 100%;
  background: #fff;
  color: var(--accent-grey);
}

.descr__info{
  display: flex;
  flex-direction: column;
  gap:15px
  ;
}
.descr__name{
  font-weight: 600;
  font-size: 25px;
}
.descr__pos{
  font-size: 18px;
}
.descr__list{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 15px;
  gap: 5px;
}

.descr__item{
  position: relative;
}

.descr__item::before{
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 2px;
  height: 2px;
  background: #000;
  border-radius: 100%;

}

/* ====================== questions ========================= */

.questions {
}
.main__questions {
  margin-top: 150px;
}

.questions__title {
  color: var(--accent-gold);
  margin-bottom: 90px;
  text-align: center;
}
.questions__title {
  position: relative;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Главный знак вопроса */
.questions__title::before {
  content: "?";
  position: absolute;
  top:-30px;
  left: -60px;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-gold);
  opacity: 0.9;
  transform: rotate(-12deg);
  animation: floatQ1 4s ease-in-out infinite;
  text-shadow: 0 0 12px rgba(222, 188, 115, 0.6);
}

/* Второй знак вопроса */
.questions__title::after {
  content: "?";
  position: absolute;
  top: -30px;
  right: -40px;
  font-size: 28px;
  font-weight: 600;
  color: var(--accent-gold);
  opacity: 0.7;
  transform: rotate(8deg);
  animation: floatQ2 5.5s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(222, 188, 115, 0.5);
}

/* Анимация "парения" */
@keyframes floatQ1 {
  0%   { transform: translateY(0) rotate(-12deg); }
  50%  { transform: translateY(-10px) rotate(-6deg); }
  100% { transform: translateY(0) rotate(-12deg); }
}

@keyframes floatQ2 {
  0%   { transform: translateY(0) rotate(8deg); }
  50%  { transform: translateY(-14px) rotate(14deg); }
  100% { transform: translateY(0) rotate(8deg); }
}

.bid__btn {
  margin-top: 12px;
  align-self: flex-start;
  padding: 14px 34px;
  border-radius: 999px;
  border: 1px solid var(--accent-gold);
  background: linear-gradient(135deg, transparent, rgba(222, 188, 115, 0.15));
  color: var(--accent-gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Эффект блика */
.bid__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.25),
    transparent 80%
  );
  transform: translateX(-120%);
  transition: 0.5s ease;
}

.bid__btn:hover::before {
  transform: translateX(120%);
}

.bid__btn:hover {
  background: var(--accent-gold);
  color: var(--accent-black);
  box-shadow: 0 10px 30px rgba(222, 188, 115, 0.45);
  transform: translateY(-2px);
}

.bid__btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(222, 188, 115, 0.3);
}

.bid__btn {
  align-self: stretch;
  text-align: center;
}




/* ----- accordion -------- */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.accordion__item {
  border-radius: 16px;
  background: var(--accent-grey);
  color: var(--accent-white);
  overflow: hidden;
}


.accordion__control {
  width: 100%;
  padding: 30px;
  font-weight: 500;
  font-size: 35px;
  color: var(--accent-white);
  line-height: 100%;
  background: transparent;
  border: none;

  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}


.accordion__control img {
  transition: transform 0.3s ease;
}


.accordion__item--active .accordion__control img {
  transform: rotate(90deg);
}


.accordion__inner {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}


.accordion__content {
  padding: 0 35px 40px;
}

.accordion__text {
font-size: 20px;
line-height: 1;
}


/* ==================== bid ======================== */

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

.bid__bg::before{
  content: "";
  position: absolute;
  display: block;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000000c3;
}

.title--container{
  display: flex;
  justify-content: center;
}

.bid__title{
  position: relative;
  width: fit-content;
  color: var(--accent-white);
  margin-bottom: 70px;
}
.bid__title::after{
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
}

/* ====== Общая композиция ====== */
.bid {
  position: relative;
  margin-top: 120px;
  padding: 90px 0 200px;
  color: var(--accent-white);
}

.bid__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 70px;
  position: relative;
  z-index: 1;
}


.bid__title {
  position: relative;
  width: fit-content;
  color: var(--accent-white);
  margin-bottom: 70px;
  letter-spacing: 0.04em;
}

.bid__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}


.bid__contact,
.bid__form {
  background: rgba(26, 26, 26, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(222, 188, 115, 0.2);
  border-radius: 18px;
  padding: 40px 40px 46px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


.contact__title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 70px;
  color: var(--accent-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bid__contact label {
  display: block;
  margin-bottom: 18px;
}

.bid__contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: var(--accent-white);
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  padding-left: 18px;
}

.bid__contact a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 8px rgba(222, 188, 115, 0.8);
}

.bid__contact a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}


.form__title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--accent-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bid__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bid__form input,
.bid__form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 254, 254, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--accent-white);
  outline: none;
  transition: 0.25s ease;
}

.bid__form textarea {
  resize: none;
  min-height: 90px;
}

.bid__form input::placeholder,
.bid__form textarea::placeholder {
  color: rgba(255, 254, 254, 0.5);
  letter-spacing: 0.05em;
}

.bid__form input:focus,
.bid__form textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 1px rgba(222, 188, 115, 0.4);
}


.bid__form button {
  margin-top: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--accent-gold);
  background: linear-gradient(135deg, transparent, rgba(222, 188, 115, 0.15));
  color: var(--accent-gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}

.bid__form button:hover {
  background: var(--accent-gold);
  color: var(--accent-black);
  box-shadow: 0 10px 30px rgba(222, 188, 115, 0.4);
  transform: translateY(-2px);
}


.bid__contact,
.bid__form {
  position: relative;
  overflow: hidden;
}

.bid__contact::after,
.bid__form::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(222,188,115,0.08), transparent 60%);
  pointer-events: none;
}


/* ================ subscription ==================*/

.subscription {
  position: relative;
  margin-top: 100px;
  padding: 120px 0 180px;
  color: var(--accent-white);
}



.subscription__title {
  display: block;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 70px;
  color: var(--accent-white);
  letter-spacing: 0.04em;
  text-align: center;
}

.subscription__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

/* ====== Сетка ====== */
.subscription__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ====== Карточка ====== */
.subscription__item {
  position: relative;
  padding: 36px 34px 40px;
  border-radius: 18px;
  background: rgba(26, 26, 26, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(222, 188, 115, 0.18);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: 0.35s ease;
  overflow: hidden;
}


.subscription__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--accent-gold), transparent);
  opacity: 0.9;
}


.subscription__item::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(222, 188, 115, 0.08), transparent 60%);
  pointer-events: none;
}


.subscription__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border-color: rgba(222, 188, 115, 0.35);
}


.subscription__item-title {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--accent-gold);
  letter-spacing: 0.03em;
}

/* ====== Описание ====== */
.subscription__item-descr {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 254, 254, 0.8);
}

/* ====== Дополнительный штрих ====== */
.subscription__item:hover .subscription__item-title {
  text-shadow: 0 0 10px rgba(222, 188, 115, 0.5);
}


.team::marker,
.questions::marker {
  content: "";
}

.team::before,
.questions::before {
  border-top: 1px solid rgba(222, 188, 115, 0.15);
}



/* =========== фв=================== */


/* ====== Секция ====== */
.cases {
  position: relative;
  padding: 140px 0 180px;
  background: var(--accent-black);
  color: var(--accent-white);
  overflow: hidden;
}

/* .cases::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 15% 20%, rgba(222, 188, 115, 0.08), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(222, 188, 115, 0.05), transparent 50%);
  pointer-events: none;
} */

.cases__title {
  display: block;
  margin: 0 auto;
  position: relative;
  width: fit-content;
  margin-bottom: 80px;
  text-align: center;
}

.cases__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.cases__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  z-index: 1;
}


.cases__row {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding: 36px 40px 40px 30px;
  border-radius: 18px;
  background: rgba(26, 26, 26, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(222, 188, 115, 0.18);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  transition: 0.35s ease;
  overflow: hidden;
}


.cases__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--accent-gold), transparent);
}


.cases__row::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(222, 188, 115, 0.08), transparent 60%);
  pointer-events: none;
}


.cases__row:hover {
  transform: translateY(-4px);
  border-color: rgba(222, 188, 115, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}


.cases__num {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  text-shadow: 0 0 14px rgba(222, 188, 115, 0.5);
  align-self: flex-start;
}


/* ====== Контент ====== */
.cases__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cases__item-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--accent-white);
}

.cases__item-text {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 254, 254, 0.8);
}

/* ========== */

/* ====== Секция ====== */
.practice {
  position: relative;
  padding: 140px 0 180px;
  background: var(--accent-black);
  color: var(--accent-white);
  overflow: hidden;
}


.practice__title {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 70px;
  display: block;
  text-align: center;
}

.practice__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

/* ====== Слайдер ====== */
.practice__swiper {
  position: relative;
  padding: 30px 0 60px;
}

.practice__slide {
  display: flex;
  justify-content: center;
}

/* ====== Карточка ====== */
.practice__card {
  width: 100%;
  max-width: 980px;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  padding: 40px 44px;
  border-radius: 22px;
  background: rgba(26, 26, 26, 0.988);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(222, 188, 115, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  position: relative;
}

/* Свечение */
.practice__card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(222, 188, 115, 0.08), transparent 60%);
  pointer-events: none;
}

/* ====== Контент слева ====== */
.practice__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.practice__card-title {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.practice__card-text {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 254, 254, 0.8);
}

/* Акцентный результат */
.practice__result {
  margin-top: auto;
  padding-top: 16px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--accent-gold);
  border-top: 1px solid rgba(222, 188, 115, 0.25);
  text-shadow: 0 0 10px rgba(222, 188, 115, 0.4);
}

.practice__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(222, 188, 115, 0.2);
  background: #000;
}

.practice__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: 0.4s ease;
}

.practice__card:hover .practice__media img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.1);
}

.practice__prev,
.practice__next {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(222, 188, 115, 0.4);
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 5;
  transition: 0.25s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);

}


.practice__prev { left: 50px; }
.practice__next { right: 50px; }

.practice__prev:hover,
.practice__next:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--accent-black);
}

/* ====== Пагинация ====== */
.practice__pagination .swiper-pagination-bullet {
  background: rgba(255, 254, 254, 0.4);
  opacity: 1;
}

.practice__pagination .swiper-pagination-bullet-active {
  background: var(--accent-gold);
}

.swiper-pagination{
  display: flex;
  justify-content: center;
  gap: 5px
  ;
}



/* ============================== */
/* ============================== */
/* ============================== */

@media (max-width: 1400px){

  /* ----- team ------- */
  .team{
    padding: 130px 0;
  }

  .team__slider{
    gap: 40px;
  }

  .team__title{
    font-size: 55px;
    margin-bottom: 90px;
  }

  /* left */
  .team__left{
    max-width: 50%;
  }

  /* .team__photo-left{
    width: 160px;
    height: 160px;
  } */

  .team__slide-left span{
    font-size: 16px;
  }

  /* right */
  .team__inner-right{
    max-width: 600px;
    height: 520px;
  }

  .team__slide-right{
    width: 600px;
  }

  .active{
    height: 520px;
  }

  .team__photo-descr{
    bottom: 40px;
    gap: 15px;
  }

  .descr__name{
    font-size: 22px;
  }

  .descr__pos{
    font-size: 16px;
  }

  .descr__list {

    font-size: 12px;

}
  .team__slider {
    align-items: flex-start;
  }

  .team__left,
  .team__right {
    flex: 1 1 0;
    min-width: 0; 
  }

  .team__inner-right {
    max-width: 100%;
  }

  .team__slide-right {
    width: 100%;
  }
.subscription__item-descr{
  font-size: 16px;
}

.practice__next{
  top: 100%;
  right: 40%;
}
.practice__prev{
  top: 100%;
  left: 40%;
}
}

@media (max-width: 1200px){
  /* ---- header ------ */
  .header__top{
    margin-bottom: 10px;
  }

  .header__logo{
    font-size: 35px;
  }
  .header__nav{
    font-size: 18px;
  }
  .header__button{
    font-size: 16px;
  }

  .hero__inner{
    gap: 30px;
  }
  .hero__title, .bid__title, .subscription__title, .cases__title, .practice__title{
    font-size: 45px;
  }
  .hero__descr{
    margin-bottom: 35px;
  }
  .hero__item{
    font-size: 15px;
    padding: 30px 10px;
  }

  
  /* --- team ---- */
  .team{
    padding: 70px 0px;
  }
  .team__slider{
    align-items: normal;
    flex-direction: column-reverse;
  }

  .team__title{
    font-size: 50px;
    margin-bottom: 40px;
    text-align: center;
  }

  .team__descr{
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
    max-width: 700px;
    text-align: center;
  }


  /* right */

  .team__right{
    display: flex;
    justify-content: center;
  }
  .team__photo-descr{
    bottom: 0px;
  }

  .team__slide-right img {
    object-fit: cover;
    object-position: 50% 40%;
}

.team__inner-right{
  height: 70vw;
  width: 70vw;
}
.active{
  height: 70vw;
  width: 70vw;
}

/* left */

.team__left{
  max-width: none;
}
.team__photo-left{
  width: 200px;
  height: 200px;
}

.team__slide-left {
    max-width: 200px;
}

/* -------- questions --------- */

.questions__title{
  font-size: 50px;
  margin-bottom: 70px;
}

/* -------- accordion --------- */
.accordion__control{
  padding: 27px;
  font-size: 30px;
}

/* ------- subscription --------- */

.subscription__grid{
  grid-template-columns: repeat(2, 1fr);
}

/* ------------ cases ------------ */
  .cases__row {
    grid-template-columns: 90px 1fr;
  }

  .cases__num {
    font-size: 46px;
  }

}


@media (max-width: 1000px){
  /* ---- header ----- */
  .header__logo{
    font-size: 32px;
  }
  .hero {
  padding-bottom: 100px;
}

  .nav{
    gap: 18px;
  }

  .header__button{
    padding: 7px 10px;
  }

  .social{
    display: none;
  }


  .hero__inner{
    flex-direction: column;
    align-items: center;
  }
  
  .hero__info{
    align-items: center;
  }

  .hero__title, .hero__descr, .hero__item{
    text-align: center;
  }

  .hero__img{
    display: none;
  }

  .hero__item {
        padding: 25px 10px;
    }


  /* ------- team ---------- */

  /* right */
  .descr__name{
    font-size: 18px;
  }

  .descr__info{
    gap: 10px;
  }

  .team__photo-descr{
    padding: 5px 20px;
    gap: 10px;
  }

  .descr__pos{
    font-size: 15px;
  }

  .team__title{ 
    margin-bottom: 25px;
  }

  .team__descr{
    font-size: 18px;
    max-width: 500px;
  }

  .team__scrollbar{
    margin-top: 30px;
  }

  /* ----- accordion ------- */

  .accordion__control {
        padding: 25px;
    }
  
  /* ------- bid ---------- */
  .bid__inner{
    gap: 30px;
    margin-top: 50px;
  }

  .contact__title {
  font-size: 20px;
  margin-bottom: 30px;
}

.form__title{
  font-size: 20px;
}
.bid__contact a{
  font-size: 18px;
}

/* ---------- subscription ---------------- */
.subscription, .practice{
  padding: 100px 0px 120px 0px;
}

}

@media (max-width: 800px) {
  .nav, .header__button{
    display: none;
  }
  .burger__menu{
    display: block;
  }
  .header__top{
    padding: 15px 0px;
  }

  .hero__button, .hero__input {
    font-size: 18px;
    padding: 12px 15px;
}

  .hero__title, .questions__title, .bid__title, .subscription__title, .cases__title, .practice__title{
    font-size: 40px;
  }
  

  .hero__descr{
    font-size: 18px;
    margin-bottom: 15px;
    max-width: 500px;
  }

  .hero__grid{
    gap: 15px;
  }

  .hero__item{
    padding: 20px 10px;
  }

  /* ---- team ------ */

.team{
  padding: 40px 0px;
}
.team__photo-left {
  width: 170px;
  height: 170px;
}

.team__slider{
  gap: 35px;
}

.team__title{
  font-size: 35px;
  margin-bottom: 10px;
}

 /* left */
 .team__title, .bid__title, .cases__title, .practice__title{
  font-size: 40px;
 }


 .team__slide-left span {
  font-size: 14px;
}

.team__scrollbar {
  margin-top: 20px;
}

.team__descr{
  font-size: 15px;
  margin-bottom: 20px;
}

/* right */

.descr__list{
  display: none;
}

.descr__info{
  gap: 5px;
}

.descr__name{
  font-size: 15px;
}
.descr__pos{
  font-size: 12px;
}
.team__photo-descr{
  display: flex;
}

    .active,.team__inner-right {
      width: 80vw;
        height: 80vw;
    }

/* -----------  accordion -------------- */
.questions__title{
  margin-bottom: 50px;
}

.questions__title::after{
    top: -30px;
    right: -30px;
}

.questions__title::before{
    top: -30px;
    left: -40px;
}
    .accordion__control {
        padding: 20px;
        font-size: 22px;
    }

    .accordion__content {
    padding: 0px 25px 30px;
}

    .accordion__text {
    font-size: 18px;
    line-height: 1;
}

.accordion__control img {
  max-width: 60px;
}

/* -------- bid ----------- */
.bid__inner{
  grid-template-columns: 1fr;
  margin-top: 40px;
}

.bid__contact{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form__title{
  text-align: center;
}

.bid{
  margin-top: 70px;
  
}
  
/* -------- subscription ------------- */
.subscription__grid{
  grid-template-columns: 1fr;
}


/* ------- cases ----------------- */
  .cases {
    padding: 100px 0 120px;
  }

  .cases__row {
    grid-template-columns: 70px 1fr;
    padding: 30px 28px 32px 22px;
  }

  .cases__num {
    font-size: 38px;
  }

    .cases__item-title {
  font-size: 18px;
}

.cases__item-text {
  font-size: 16px;
}

/* ------ ptractice ---------- */
  .practice__card {
    grid-template-columns: 1fr;
  }

  .practice__media {
    max-height: 700px;
  }
  
  .practice__next{
  top: 98%;
  right: 10%;
}
.practice__prev{
  top: 98%;
  left: 10%;
}
.practice__card-title{
  font-size: 22px;
}

.practice__card-text{
  font-size: 16px;
}
.practice__result{
  font-size: 18px;
}
}


@media (max-width: 600px){
.hero {
  padding-bottom: 70px;
}

  .header__logo {
    font-size: 27px;
  }

  .burger__menu {
    padding: 20px;
    transform: scale(.8);
  }

  .nav__item--mobile{
    font-size: 20px;
  }

  .header__button--mobile {
    font-size: 15px;
  }

  .hero__form{
    flex-direction: column;
    gap: 15px;
  }

  .hero__descr{
    font-size: 15px;
    margin-bottom: 25px;
  }

  .hero__button, .hero__input {
    font-size: 15px;
    padding: 12px 15px;
  }

  .hero__item{
    padding: 15px 10px;
    border: 2px solid var(--accent-gold);
  }


  /* --- team ---- */
   .team__title, .questions__title, .bid__title, .subscription__title, .cases__title, .practice__title{
  font-size: 35px;
 }

 .team__slide-left {
        max-width: 160px;
    }
 .team__photo-left {
  width: 130px;
  height: 130px;
}
/* -----------  accordion -------------- */
.main__questions {
    margin-top: 70px;
}

.questions__title::after{
      top: 50px;
    right: 0px;
}

.questions__title::before{
      top: 50px;
    left: 0px;
    font-size: 30px;
}

.accordion {
    gap: 18px;
}
    .accordion__control {
        padding: 18px;
        font-size: 18px;
    }

    .accordion__content {
    padding: 0px 18px 25px;
}

    .accordion__text {
    font-size: 15px;
}

.accordion__control img {
  max-width: 40px;
}

.accordion__item {
    border-radius: 12px;}

/* ----- bid -------- */
    .bid__inner{
  margin-top: 30px;
}

.bid{
  padding: 90px 0 120px;
  margin-top: 70px;

}


/* ------------ subscription ---------------- */
.subscription__item-title{
  font-size: 18px;
}
.subscription__item-descr{
  font-size: 15px;
}
.subscription__grid{
  gap: 35px;
}

/* ------------- cases ----------------- */
  .cases__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cases__num {
    font-size: 34px;
  }


  /* ------- practice ----------- */
  .practice__card-title{
    font-size: 20px;
  }

      .practice__card-text {
        font-size: 15px;
    }

        .practice__result {
        font-size: 16px;
    }

    .practice__content {
    text-align: center;
}

.practice__card{
  padding: 25px 30px;
}


.practice__title{
  margin-bottom: 50px;
}

}