/* =============================
RESET & GLOBAL STYLES
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Roboto", sans-serif;
  color: #222;
  overflow-x: hidden;
}
body {
  background: #f7f7f7;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}

h1 {
  font-size: 48px;
}
h3 {
  font-size: 28px;
  font-weight: bold;
  line-height: 36px;
}
h4 {
  font-size: 22px;
  font-weight: 500;
}
h5 {
  font-size: 18px;
  font-weight: bold;
  line-height: 115%;
}
nav a {
  text-decoration: none;
}
/* =============================
CSS VARIABLES
============================= */
:root {
  --color-primary: #2560d8;
  --color-yellow: #e2ee4e;
  --color-red: #ef5311;
  --color-tomato: #ff4f00;
  --color-bg: #fafafa;

  --color-text: #272928;
  --color-subtext: #505251;
  --color-light-text: #7f7f7f;

  --container-width: 1600px;

  --padding-section: clamp(20px, 6vw, 70px);

  --shadow: 0 4px 10px #00000036;
}
.top-dropdown li{
    padding: 10px;
}
.top-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 0.4rem 0;
  width: max-content;
  max-width: 420px;
  box-shadow: 0px 5px 20px #00000080;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.15s ease-in-out;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 20px;
      align-items: flex-start !important;
}
.has-dropdown {
  position: relative;
  min-height: 30px;
  display: flex;
  align-items: center;
}

.has-dropdown p {
  font-size: 16px;
}
.has-dropdown:hover .top-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(1px);
  flex-direction: column;
/*   padding: 20px; */
  gap: 0;
}
.has-dropdown:hover .top-dropdown li{
    background: #e2ee4e00;
    padding: 10px;
    cursor: pointer;
    width: 100%;
}
.has-dropdown:hover .top-dropdown li:hover{
    background: var(--color-yellow);
    padding: 10px;
}
.has-dropdown > p::after {
  content: "▾";
  position: absolute;
  right: -17px;
  top: 5px;
  font-size: 20px;
  line-height: 100%;
  transition: transform 0.3s;
}
.nav--mobile .has-dropdown > p::after {
  display: none;
}
.has-dropdown:hover > p::after {
  transform: rotate(180deg);
}
.animate-visible {
  animation: fadeInUp 1s ease forwards;
}
[data-animate="fadeInUp"],
.fade-in-up {
  opacity: 0;
  transform: translate3d(0, 15%, 0);
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -ms-transform: translate3d(0, 15%, 0);
    -webkit-transform: translate3d(0, 15%, 0);
    transform: translate3d(0, 15%, 0);
  }
  100% {
    opacity: 1;
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.mobile-login {
  color: white !important;
}
/* ========== STAGGER ANIMATION ========== */

.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.stagger > *.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > *:nth-child(1) {
  transition-delay: 0.1s;
}
.stagger > *:nth-child(2) {
  transition-delay: 0.25s;
}
.stagger > *:nth-child(3) {
  transition-delay: 0.4s;
}
.stagger > *:nth-child(4) {
  transition-delay: 0.55s;
}
.stagger > *:nth-child(5) {
  transition-delay: 0.7s;
}
.btn-submit{
    background: var(--color-primary);
    color: var(--color-bg);
    font-size: 16px;
}
.btn-submit:disabled{
    opacity: 0.5;
    cursor: auto;
}
/* error message */
.jGrowl-notification{
    width: 100% !important;
}
.af-message-error, .jGrowl-message{
    font-size: 20px;
}
.jGrowl.top-right{
    right: 2% !important; 
}
/* MODAL COMMON */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .3s ease, visibility .3s ease;
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.modal__content {
  position: relative;
  max-width: 700px;
  margin: 4vh auto;
  background: #fff;
  padding: 0 20px;
  border-radius: 12px;
  z-index: 999999;
  transform: translateY(20px);
  transition: transform .3s ease;
}
.modal__content h3{
    margin-bottom: 20px;
    color: var(--color-text);
}
.modal__content h2{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E2E8EA;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 10px;
}
.modal.is-active .modal__content {
  transform: translateY(0);
}
.modal__content-footer{
     margin-top: 10px;
    display: flex;
    justify-content: flex-end;
    padding: 10px 0;
    gap: 15px;
    border-top: 1px solid #E2E8EA;
}
.modal__close {
  height: 20px;
  display: flex;
  width: 20px;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border-radius: 12px;
  padding: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid #505251;
}
.form-agreement{
    padding: 5px;
}
.form-agreement a{
    color: var(--color-primary);
}
.form-agreement a:hover{
   border-bottom: 1px solid;
}

.form-agreement span{
       font-size: 12px;
}
.form-group label{
    font-size: 13px;
    padding-left: 10px;
    color: var(--color-light-text);
}
.form-group textarea{
    resize: none;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid;
    border-radius: 10px;
    border-color: var(--color-light-text);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border: 1px solid;
    border-color: var(--color-subtext);
}
.form-group.add-file input{
    border: none;
    width: max-content;
    display: block;
    cursor: pointer;
    padding: 2px;
}

body.modal-open .header__container{
    z-index: 0;
}
html.modal-open,
body.modal-open {
  overflow: hidden;
}
/* =============================
LAYOUT COMMON
============================= */
.container {
  width: 100%;
  max-width: var(--container-width);
  width: 95%;
  margin: 0 auto;
  padding: 15px;
  z-index: 2;
  position: relative;
}

.section {
  padding: var(--padding-section) 0;
}

.section__content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* =============================
HEADER
============================= */
.header {
  background: #fff;
  position: relative;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ebf1fde8;
  border-radius: 16px;
  margin-top: 15px;
  position: fixed;
  width: 92.9%;
  left: 50%;
  transform: translate(-50%);
  z-index: 22;
  backdrop-filter: blur(5px);
}

.header__logo {
  font-weight: 700;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 400;
  transition: all 0.35s ease-in-out;
  border-bottom: 2px solid transparent;
}
/* .nav a:hover {
  border-bottom: 2px solid var(--color-yellow);
} */

/* Desktop menu visible only ≥ 768 */
.nav--desktop {
  display: none;
}

/* Login button */
.header__login {
  display: none;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 10px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

/* Burger */
.burger {
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #222;
}

.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Mobile menu */
.nav--mobile {
  display: none;
  background: #edf2fd;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-top: 2px solid #50525114;
  height: 99.1dvh;
  margin-top: 52px;
  transition: all 1s ease-in-out;
}
.nav--mobile .top-dropdown {
  opacity: 1;
  position: relative;
  border-radius: 6px;
  box-shadow: 0px 5px 20px #00000040;
  width: 98%;
  visibility: visible;
}
.nav--mobile ul {
  list-style: none;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(2px);
  align-items: flex-start;
}
.nav--mobile .has-dropdown{
    align-items: flex-start;
    flex-direction: column;
}
.nav--mobile .has-dropdown > a::after {
  display: none;
}
.nav--mobile .has-dropdown:hover .top-dropdown {
  padding: 16px;
  transform: translateY(2px);
}

/* =============================
HERO
============================= */
.section--hero .hero-backgroung-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 0;
}
.section--hero .hero-backgroung-image img {
  width: 100%;
}
.hero {
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero__text {
  flex: 1 1 300px;
}



/* carousel */

.hero__image.carousel-hero-slide {
  position: relative;
}

.hero__image.carousel-hero-slide img {
  position: absolute;
  max-width: 76%;
  max-height: 280px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero__image.carousel-hero-slide img.active {
  opacity: 1;
}

.hero-dots {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--color-subtext);
  transform: scale(1.3);
}

.hero__image {
  max-width: 600px;
  background-image: url(../image/index/device-macbook.png);
  width: 100%;
  min-height: 370px;
  background-position: center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
}
.hero__image img {
  width: 100%;
  object-fit: contain;
}

.hero__text .hero__text--main-title {
  padding: 6px 10px 6px 0;
  background: #e2ee4d;
  border-radius: 10px;
  letter-spacing: -0.5px;
  width: fit-content;
  position: relative;
  padding-right: 20px;
}
.hero__text .hero__text--main-title::before {
  z-index: -1;
  content: "";
  background: #e2ee4e;
  width: 1000%;
  height: 70px;
  left: -990%;
  top: 0;
  position: absolute;
  display: block;
}
.hero__text .hero__text--sub-title {
  letter-spacing: -0.5px;
  font-weight: 400;
}

.hero__text h1 {
  font-size: 48px;
  color: var(--color-text);
}

.hero__text-text {
  margin-bottom: 24px;
  line-height: 1.25;
  margin-top: 16px;
  color: var(--color-light-text);
  font-weight: 200;
  letter-spacing: -0.5px;
  font-size: 22px;
}

.body-text {
  margin: 0;
  line-height: 180%;
  font-weight: 400;
  font-size: 18px;
  color: var(--color-text);
}

/* =============================
BUTTONS
============================= */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
}

/* Primary button */
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(41, 105, 255, 0.2);
  font-size: 16px;
}

/* Pulsating effect on hover */
.btn--primary:hover {
  animation: btn-pulse 1.5s infinite;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 105, 255, 0.3);
}

/* Ripple wave effect */
.btn--primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn--primary:hover::after {
  animation: btn-ripple 1s ease-out;
}

/* Pulsation animation */
@keyframes btn-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(41, 105, 255, 0.4),
      0 6px 20px rgba(41, 105, 255, 0.3);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(41, 105, 255, 0),
      0 6px 20px rgba(41, 105, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(41, 105, 255, 0),
      0 6px 20px rgba(41, 105, 255, 0.3);
  }
}

/* Ripple animation */
@keyframes btn-ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(40, 40);
    opacity: 0;
  }
}

/* Белая кнопка */
.btn--white {
  background: #fff;
  color: var(--color-text);
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 15px rgba(41, 105, 255, 0.2);
}

/* Пульсация на hover */
.btn--white:hover {
  animation: btn-white-pulse 1.5s infinite;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 105, 255, 0.3);
}

/* Ripple эффект */
.btn--white::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(41, 105, 255, 0.4); /* Синяя волна */
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn--white:hover::after {
  animation: btn-white-ripple 1s ease-out;
}

/* Пульсация синяя */
@keyframes btn-white-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(194, 194, 194, 0.4),
      0 6px 20px rgba(194, 194, 194, 0.3);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(224, 224, 224, 0),
      0 6px 20px rgba(224, 224, 224, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(238, 238, 238, 0),
      0 6px 20px rgba(238, 238, 238, 0.3);
  }
}

/* Ripple синяя */
@keyframes btn-white-ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.7;
  }
  100% {
    transform: scale(40, 40);
    opacity: 0;
  }
}

/* Small button */
.btn--small {
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
}

/* Active state */
.btn:active {
  transform: translateY(1px);
  transition: transform 0.1s;
}

/* Disable animations on mobile for performance */
@media (max-width: 768px) {
  .btn--primary:hover {
    /* animation: none; */
    transform: translateY(-1px);
  }

  .btn--primary:hover::after {
    animation: none;
  }
}

/* shadow-block */
.shadow-block {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
  border-radius: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.section--shadow-block:nth-of-type(odd) .shadow-block {
  box-shadow: none;
/*   flex-direction: row-reverse; */
}
.shadow-block__content {
  display: flex;
  gap: 16px;
  flex-direction: column;
  flex: 1;
}

.shadow-block__text .shadow-block__text-title {
  color: var(--color-primary);
  font-size: 22px;
  margin-bottom: 8px;
  flex: 1;
}

/* ================= Feature blocks (CRM / BPM / Project и тд) ================= */
.feature-block--split,
.feature-block--card,
.feature-block--columns,
.feature-block--card-r,
.feature-block--columns-r {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

/* карточные блоки */
.feature-block--card,
.feature-block--columns {
  background: #ffffff15;
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 24px 48px;
}
.feature-block--columns-r {
  flex-direction: row-reverse;
}
/* реверс для блоков с картинкой справа */
.feature-block--card-r {
  padding: 24px 48px;
}
.feature-block--split {
  padding: 24px 48px;
}
/* ===== content ===== */
.feature-content {
  flex: 1;
  min-width: 280px;
}

.feature-title {
  margin-bottom: 24px;
}
/* ===== list ===== */
.feature-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.feature-list .feature-column{
    flex: 1;
}
.feature-item {
  flex: 1;
  min-width: 220px;
}
/* ===== labels ===== */
.feature-label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 8px 12px;
  background-color: #e5edf4;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
}

/* ===== text ===== */
.feature-text {
  color: var(--color-text);
}

/* ===== media ===== */
.feature-media {
  display: flex;
  align-items: center;
}

.feature-media img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .feature-block--card,
  .feature-block--columns {
    padding: 32px;
  }

  .feature-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .feature-block--split,
  .feature-block--card,
  .feature-block--columns,
  .feature-block--card-r {
    flex-direction: column;
    gap: 0;
    padding: 32px;
  }
  .feature-title {
    margin-bottom: 5px;
  }
  .feature-media {
    order: -1; /* картинка сверху */
    justify-content: center;
  }

  .feature-item {
    min-width: 100%;
  }
  .feature-block--columns-r {
    flex-direction: column;
  }
}

/* блок бенефиты */
.crm-benefits__container {
  background: linear-gradient(180deg, #f3f8d8 0%, #eef6d1 100%);
  padding: 24px;
  border-radius: 20px;
}
.crm-benefits__title {
  margin-bottom: 24px;
  padding: 14px 16px;
  background-color: #e3f45b;
  border-radius: 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.crm-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.crm-benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 16px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
}


.crm-benefit-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: #f2f5ff;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crm-benefit-card__icon img {
  width: 100%;
  object-fit: contain;
}
.crm-benefit-card__title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.crm-benefit-card__text {
  font-size: 14px;
  line-height: 130%;
  color: var(--color-subtext);
}

.section--cloud .container{
    position: inherit;
}

/* ===== desktop ===== */
@media (min-width: 1024px) {
  .crm-benefits__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .crm-benefit-card {
    padding: 28px 20px 32px;
  }

  .crm-benefit-card__title {
    font-size: 18px;
  }

  .crm-benefit-card__text {
    font-size: 16px;
  }
}

.review-block__label:empty {
    display: none;
}
/* ==================  footer ================= */
.section--footer {
  position: relative;
  padding-bottom: 20px;
}
.section--footer .footer-backgroung-image {
  width: 100%;
  position: absolute;
  height: 100dvh;
  bottom: 360px;
  z-index: 1;
}
.section--footer .footer-bg2 {
  bottom: 160px;
}
.section--footer .footer-backgroung-line {
  min-width: 100dvw;
  position: absolute;
  top: 155px;
  z-index: 0;
  height: 140px;
}
.section--footer .footer-backgroung-image img {
  width: 100%;
  height: 99%;
}
.section--footer .footer-backgroung-line img {
  width: 100%;
  height: 99%;
}
.section--footer .footer__top {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
.section--footer .footer__top .footer-middle-section {
  gap: 35px;
  text-align: center;
  flex: 1 1 0;
  max-width: 700px;
  display: flex;
  flex-direction: column;
}
.section--footer .footer__top .footer-middle-section h1 {
  font-size: 40px;
  line-height: 135%;
}
.section--footer .footer__top .footer-middle-section button {
  padding: 11px 32px;
}
.section--footer .footer__middle {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.section--footer .footer__middle .footer__middle-left-section {
  flex: 1;
}
.section--footer .footer__middle .footer__middle-right-section {
  max-width: 600px;
}
.section--footer .footer__middle .footer__middle-right-section .card--big h5{
    margin-bottom: 15px;

}
.section--footer .footer__middle .section--webapp__subtitle p,
.section--footer .footer__middle .card--big p {
  /* max-width: 65%; */
  letter-spacing: 0.5px;
    font-size: 16px;
    color: var(--color-subtext);
    line-height: 140%;
}
.section--webapp__title{
    margin-bottom:10px;
}
.section--webapp__content{
        display: flex;
    flex-direction: column;
    gap: 5px;    
}
.section--footer .footer__middle .card--big p {
  max-width: 100%;
}
.section--footer .footer__middle .card--big button {
  margin-top: 42px;
}
.section--footer .footer__middle .section--webapp__buttons {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.section--footer .footer__middle .section--webapp__buttons a {
  border: 1px solid #eff3f5;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
}
.section--footer .footer__middle .section--webapp__buttons a:hover {
  transform: translateY(-6px);
}
.section--footer .footer__middle .section--webapp__buttons a img {
  border-radius: 12px;
}
.section--footer .footer__middle .section--webapp__content,
.section--footer .footer__middle .card--big {
  padding: 24px;
  border-radius: 20px;
  background: var(--color-bg);
  min-height: 222px;
  box-shadow: 0 8px 24px rgba(18, 32, 56, 0.05);
}
.section--footer .footer__under {
  margin-top: 100px;
  border-top: 2px solid #5052510a;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  flex-wrap: wrap;
}
.section--footer .footer__under .footer-left-section {
  flex: 1;
}

.section--footer .footer__under ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.section--footer .footer__under .footer-dropbtn {
  color: var(--color-light-text);
  font-weight: 500;
}

.section--footer .footer__under .dropdown .dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 22px;
}
.section--footer .footer__under .dropdown .dropdown-content a {
  color: var(--color-primary);
  transition: all 0.22s ease-in-out;
  border-bottom: 1px solid transparent;
  width: max-content;
}
.section--footer .footer__under .dropdown .dropdown-content a:hover {
  border-bottom: 1px solid;
}
.section--footer .footer__under .footer-right-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section--footer .footer__under .footer-right-section .header__logo p {
  font-size: 12px;
  color: var(--color-light-text);
  font-weight: 300;
  margin-top: 10px;
}
.section--footer .footer__under .footer-right-section .footer__phone p,
.section--footer .footer__under .footer-right-section .footer__email p {
  font-size: 14px;
  color: var(--color-light-text);
  font-weight: 300;
  line-height: 124%;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}
.section--footer .footer__under .footer-right-section .footer__phone a,
.section--footer .footer__under .footer-right-section .footer__email a {
  font-size: 20px;
  color: var(--color-text);
  font-weight: 600;
  line-height: 124%;
}
.section--footer .footer__under .footer-right-section .footer__privacy-policy {
  
}
.section--footer
  .footer__under
  .footer-right-section
  .footer__privacy-policy
  a {
  font-size: 12px;
  color: var(--color-light-text);
  font-weight: 300;
  line-height: 124%;
  letter-spacing: 0.3px;
  border-bottom: 1px solid;
}
.section--footer .footer__under .footer-right-section .footer__adress {
  margin-top: -6px;
  font-size: 12px;
  color: var(--color-light-text);
  font-weight: 300;
  line-height: 124%;
  letter-spacing: 0.3px;
}

.section--webapp__text p {
    letter-spacing: 0.5px;
    font-size: 16px;
    color: var(--color-subtext);
    line-height: 140%;
}

  .section--footer .footer__middle .footer__middle-right-section .card--big{
        justify-content: normal;
  }
/* стили для страниц */
.business-card-pages {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.business-card-pages .business-card-pages__wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.business-card-pages .business-card-pages__wrap .business-card-pages__main {
  display: flex;
  gap: 73px;
  flex-wrap: wrap;
  justify-content: center;
}
.business-card-pages
  .business-card-pages__wrap
  .business-card-pages__main
  .business-card-pages__body {
  flex: 1;
}

.business-card-pages
  .business-card-pages__wrap
  .business-card-pages__main
  .business-card-pages__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.business-card-pages
  .business-card-pages__wrap
  .business-card-pages__main
  .business-card-pages__list
  li {
  position: relative;
  padding-left: 18px;
  color: #55606a;
  font-size: 14px;
  line-height: 130%;
}
.business-card-pages
  .business-card-pages__wrap
  .business-card-pages__main
  .business-card-pages__list
  li:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}
.business-card-pages
  .business-card-pages__wrap
  .business-card-pages__main
  .business-card-pages__list.for-manage
  li:before {
  background: var(--color-red);
}

@media (min-width: 768px) {
  .nav--desktop {
    display: block;
  }

  .header__login {
    display: inline-block;
  }

  #burgerBtn {
    display: none;
  }
  .feature-columns {
    display: flex;
    align-items: flex-start;
    gap: 50px;
  }
  .feature-columns .feature-column {
    flex: 1;
  }
  .feature-columns .feature-text {
    text-align: justify;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  .hero__text h1 {
    font-size: 32px;
  }
  h3 {
    font-size: 22px;
    line-height: 23px;
  }
  p {
    font-size: 16px;
  }
  .section__content {
    gap: 0;
  }
  .container {
    width: 100%;
  }
  .right-side-image {
    width: 100%;
    text-align: center;
    margin-top: 3rem;
  }
  .right-side-image img {
    width: 90%;
  }
  .right-side-image {
    width: 100%;
  }
  .hero {
    margin-top: 3rem;
  }
  .hero__text {
    text-align: center;
  }
  .hero__text .hero__text--main-title {
    width: 100%;
  }
  .hero__text--main-title {
    text-align: center;
    width: 100%;
    margin: 0;
    border-radius: 12px;
  }
  .hero__text .hero__text--main-title::before {
    content: none;
  }
  .hero__text h1 {
    font-size: 24px;
  }

  .hero__image {
    width: 100%;
  }
  .hero__image img {
    width: 75%;
  }
  .header__container {
    border-radius: 0;
    margin-top: 0px;
  }
  .nav--mobile {
    height: 99.1dvh;
    margin-top: 52px;
  }
  .hero__text p {
    font-size: 16px;
  }

  .section--footer .footer__top {
    flex-direction: column;
    align-items: center;
  }
  .section--footer .footer__top .footer-left-section {
    display: none;
  }
  .section--footer .footer__top .footer-middle-section h1 {
    font-size: 32px;
  }
  .section--footer .footer__middle {
    gap: 1rem;
  }
  .section--footer .footer__middle .section--webapp__content,
  .section--footer .footer__middle .card--big {
    border: 1px solid #e6ecef;
  }
  .section--footer .footer__middle .section--webapp__subtitle p,
  .section--footer .footer__middle .card--big p {
    max-width: 100%;
  }
  .section--footer .footer__middle .footer__middle-right-section {
    max-width: 100%;
    width: 100%;
  }

  .section--footer .footer__under {
    margin-top: 50px;
  }
  .section--footer .footer__under ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: space-around;
    text-align: center;
  }
  .section--footer .footer__under .dropdown .dropdown-content {
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }
  .section--footer .footer__under .footer-right-section {
    width: 100%;
    align-items: center;
  }
  .section--footer .footer__middle .section--webapp__buttons {
    gap: 10px;
  }
  .section--footer .footer__under .footer-right-section .header__logo,
  .section--footer .footer__under .footer-right-section .footer__phone,
  .section--footer .footer__under .footer-right-section .footer__email {
    text-align: center;
  }
  .section--footer .footer-backgroung-image {
    top: -11%;
  }
  .shadow-block .banner__image {
    width: 100%;
    text-align: center;
  }
  .shadow-block .banner__image img {
    width: 100%;
  }
  .nav--mobile .top-dropdown {
    gap: 10px;
  }
  .business-card-pages {
    flex-direction: column;
  }
  .business-card-pages .business-card-pages__wrap .business-card-pages__main {
    gap: 30px;
  }
}

@media (max-width: 540px) {
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 20px;
  }
  .body-text {
    font-size: 16px;
  }
  .section--footer .footer__top .footer-middle-section h1 {
    font-size: 20px;
  }
  .section--footer .footer-backgroung-line {
    bottom: 170px;
    height: 56px;
  }
  .section--footer .footer__under ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .section--footer .footer__under .dropdown .dropdown-content a {
    width: auto;
    border-bottom: none;
  }
  .section--footer .footer__under .dropdown .dropdown-content a:hover {
    border-bottom: none;
  }
}
