
	body {
	  font-family:Inter,system-ui,sans-serif;
	  color:var(--ink);
	  scroll-behavior:smooth;
	}
	
.btn-outline-success {
  border-color: var(--brand);
  color: var(--brand);
  font-weight: 600;
  border-radius: 8px;
  padding: 0.45rem 1rem;
}
.btn-outline-success:hover {
  background: var(--brand);
  color: #fff;
}

.btn-success {
  background: var(--brand);
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.45rem 1rem;
}
.btn-success:hover {
  background: #008a6a;
}
.active_color {
  border: 2px solid var(--brand) !important;
}

	/* hero */
	.hero {
	  background:var(--grad);
	  color:#fff;
	  padding:4rem !important;
	}
	.section-title {
	  font-weight:800;
	  background:var(--grad);
	  -webkit-background-clip:text;
	  -webkit-text-fill-color:transparent;
	  text-align:center;
	  margin-bottom:3rem;
	}

	/* buttons */
	.btn-brand, .btn-success {
	  background:var(--brand);
	  color:#fff;
	  border:none;
	  border-radius:10px;
	  font-weight:600;
	  transition:background .2s ease;
	}
	.btn-brand:hover, .btn-success:hover {
	  background:#00785e;
	  color:#fff;
	}
	.btn-outline-success {
	  border-color:var(--brand);
	  color:var(--brand);
	}
	.btn-outline-success:hover {
	  background:var(--brand);
	  color:#fff;
	}

	/* navbar */
	.navbar {
	  position:sticky;
	  top:0;
	  z-index:1000;
	  background:#fff;
	  box-shadow:0 2px 8px rgba(0,0,0,0.05);
	}
	.navbar-nav .nav-link {
	  font-size:0.95rem;
	  transition:color .2s ease;
	}
	.navbar-nav .nav-link:hover {
	  color:var(--brand);
	}

	/* features and cards */
	.feature-card {
	  background-color:#fff;
	  transition:transform .2s ease, box-shadow .2s ease;
	}
	.feature-card:hover {
	  transform:translateY(-4px);
	  box-shadow:0 6px 20px rgba(0,0,0,0.08);
	}
	.feature-icon {
	  width:48px;
	  height:48px;
	  border-radius:12px;
	  display:inline-flex;
	  align-items:center;
	  justify-content:center;
	  font-size:1.4rem;
	  background:#e6f5f2;
	  color:var(--brand);
	}

	/* CTA section */
	.cta-section,
	.cta-amazon {
	  background:linear-gradient(180deg,#009e7d 0%,#00785e 100%);
	  color:#fff;
	}
	.cta-amazon .btn-light {
	  background:#fff;
	  color:#000;
	  border:none;
	  transition:background .2s ease;
	}
	.cta-amazon .btn-light:hover {
	  background:#f3f3f3;
	}

	/* accents and text */
	.text-secondary {color:#bfbfbf!important;}
	.btn-success {background:var(--brand);border:none;}
	.btn-success:hover {background:#00785e;}


	/* Восстановление границ и теней карточек */
	.step-card,
	.feature-card,
	.pricing-card {
	  background: #fff;
	  border-radius: 1rem;
	  border: 1px solid #e3e6ea;
	  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
	  padding: 2rem;
	  height: 100%;
	  transition: all .2s ease;
	}
	.step-card:hover,
	.feature-card:hover,
	.pricing-card:hover {
	  transform: translateY(-4px);
	  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
	  border-color: var(--brand);
	}
	.step-icon {
	  font-size: 2rem;
	  background: #e6f5f2;
	  color: #009e7d;
	  width: 56px;
	  height: 56px;
	  border-radius: 50%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  margin: 0 auto 1rem;
	}
	/* FAQ modern */
	.faq-card {
	  border: 1px solid #e4e7eb;
	  border-radius: 12px;
	  margin-bottom: 10px;
	  overflow: hidden;
	  background: #fff;
	  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
	  transition: all .2s ease;
	}
	.faq-card:hover {
	  border-color: var(--brand);
	  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
	}
	.faq-card button {
	  font-weight: 600;
	  color: #0b1220;
	  padding: 1rem 1.25rem;
	  background: #fff;
	  border: none;
	  width: 100%;
	  text-align: left;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  transition: background .2s ease;
	}
	.faq-card button:hover {
	  background: #f6fffc;
	}
	.faq-card .accordion-button:not(.collapsed) {
	  background: #e6f5f2;
	  color: #00785e;
	  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
	}
	.faq-card .accordion-body {
	  padding: 1rem 1.5rem;
	  color: #4a4a4a;
	  background: #fafafa;
	  border-top: 1px solid #eaeaea;
	}
	.faq-card .accordion-button::after {
	  filter: hue-rotate(120deg) brightness(0.9);
	}
	/* Исправление hover-обводки FAQ */
	.accordion-item {
	  border: 1px solid #e3e6ea;
	  border-radius: 10px;
	  margin-bottom: 8px;
	  overflow: hidden;
	  transition: all .2s ease;
	  position: relative;
	  z-index: 0;
	}
	.accordion-item:hover {
	  border-color: var(--brand);
	  z-index: 1;
	  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
	}
	.accordion-button:not(.collapsed) {
	  background: #e6f5f2;
	  color: #00785e;
	  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
	  border-bottom: 1px solid var(--brand);
	}
	.accordion-button:focus {
	  box-shadow: none;
	  border-color: var(--brand);
	}
	/* Исправление исчезающей верхней обводки FAQ */
	.accordion-item:not(:first-of-type) {
	  border-top: 1px solid #e3e6ea !important;
	}
	.accordion-item:hover {
	  border-color:var(--brand) !important;
	}
	.accordion-item:hover + .accordion-item {
	  border-top-color:var(--brand) !important;
	}
	/* Убираем двойную подсветку соседних FAQ элементов */
	.accordion-item:hover {
	  border-color: var(--brand);
	  z-index: 2;
	}
	.accordion-item:hover + .accordion-item {
	  border-top-color: #e3e6ea !important; /* возвращаем обычную границу */
	}
	.accordion-button:not(.collapsed) {
	  border-bottom-color:var(--brand) !important;
	}

section { padding-top: 100px; padding-bottom: 100px; }
.pricing-card{background:#fff;border-radius:1rem;box-shadow:0 4px 14px rgba(0,0,0,.08);padding:2rem;transition:.2s;}
.pricing-card:hover{transform:translateY(-4px);box-shadow:0 8px 20px rgba(0,0,0,.12);}
.pricing-card.active{border:2px solid var(--brand);box-shadow:0 0 0 4px rgba(0,161,123,.15);}
.pricing-card .plan{font-weight:700;font-size:1.2rem;margin-bottom:.5rem;}
.pricing-card .price{font-size:2.5rem;font-weight:800;}
.pricing-card .desc{color:#555;margin-bottom:1.5rem;}
.pricing-card ul{padding-left:0;list-style:none;text-align:left;}
.pricing-card li{margin-bottom:.4rem;font-size:.95rem;}
.pricing-card i{color:var(--brand);margin-right:.5rem;}
.comparison-table{border:1px solid #e3e6ea;border-radius:1rem;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,.03);}
.comparison-table th{background:#f8f9fa;font-weight:600;}
.comparison-table td,.comparison-table th{padding:1rem;text-align:center;border-bottom:1px solid #eaeaea;}
.comparison-table tr:last-child td{border-bottom:none;}
footer{background:#121212;color:#ccc;}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
  vertical-align: middle;
}
.switch input {opacity:0;width:0;height:0;}
.slider {
  position: absolute;
  cursor: pointer;
  top:0; left:0; right:0; bottom:0;
  background-color:#444;
  transition:.3s;
  border-radius:34px;
}
.slider:before {
  position:absolute;
  content:"";
  height:26px; width:26px;
  left:4px; bottom:3px;
  background:white;
  border-radius:50%;
  transition:.3s;
}
input:checked + .slider {background-color:#00a17b;}
input:checked + .slider:before {transform:translateX(27px);}
#use {
  background: #fff;
}

#use .use-block {
  border-radius: 24px;
  padding: 0;
  margin-bottom: 3rem;
  overflow: hidden;
}

#use .use-block .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 5rem;
  width: 100%; /* заменено max-width */
}

#use .use-block.reverse .content {
  flex-direction: row-reverse;
}

#use .use-block.light-blue { background: #f2f6ff; }
#use .use-block.light-green { background: #e8f7ef; }
#use .use-block.light-pink { background: #fff4f4; }

#use .text {
  flex: 1;
  max-width: 460px;
}

#use .image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: -120px; /* вынос картинки к правому краю */
}

#use img {
  width: 700px; /* крупнее */
  height: auto;
  object-fit: contain;
  max-width: none;
}

#use h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

#use p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

#use .btn {
  background: var(--brand);
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: background .2s ease;
}

#use .btn:hover {background: #000000;}

@media (max-width: 992px) {
  #use .use-block .content,
  #use .use-block.reverse .content {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem;
  }

  #use .image {
    margin-right: 0;
    justify-content: center;
  }

  #use img {
    margin-top: 2rem;
    width: 250px;
  }
}
/* общий сдвиг вправо для обычных блоков */
#use .image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: -120px;
}

/* зеркальный сдвиг влево для .reverse */
#use .use-block.reverse .image {
  justify-content: flex-start;
  margin-right: 0;
  margin-left: -120px;
}

    #team-love {
  background: #fff;
}
#team-love h2 {
  font-weight: 700;
}
#team-love .btn-danger {
  background: var(--brand);
  border: none;
  font-weight: 600;
  transition: background .2s ease;
}
#team-love .btn-danger:hover {background: black;}

/* --- GRID --- */
#team-love .grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin: 0 auto;
}
#team-love .grid-item {
  border-radius: 24px;
  padding: 2.8rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: all .25s ease;
}
#team-love .grid-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}
#team-love .grid-item img {
  display: block;
  width: auto;
  max-width: 90%;
  height: auto;
  margin-top: 1.5rem;
  border-radius: 20px;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.1));
}

/* --- COLORS --- */
#team-love .blue { background: #f2f6ff; }
#team-love .pink { background: #fff3f3; }
#team-love .green { background: #edf8f1; }
#team-love .purple { background: #f6f3ff; }

#team-love h4 {
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  color: #0d0d0d;
}
#team-love p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* --- Сетка высот как у Blinq --- */
#team-love .blue,
#team-love .green { height: 460px; }
#team-love .pink,
#team-love .purple { height: 460px; }

 .iphone-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: -150px; /* регулируй высоту выступа */
  position: relative;
  z-index: 5;
}
#features-black {
  margin-top: 100px; /* можно увеличить до 120–140 по вкусу */
}

    #why {
  background:#fafdfc;
}
#why h2 {
  font-weight:800;
  background:var(--grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
#why p {
  line-height:1.6;
}
.bgcolor {
  background: #f4f4f4;
}
#how .d-flex {
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 2rem;
}
#how .step {
  flex: 1 1 0;
  min-width: 0;
}
#how .divider {
  flex: 0 0 60px;
}
@media (max-width: 992px) {
  #how .d-flex {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  #how .divider {
    display: none;
  }
  #how .step {
    flex: 1 1 45%;
  }
}
 .step {
  flex: 1;
  min-width: 200px;
}
.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e6f5f2;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}
.divider {
  flex: 0 0 60px;
  height: 3px;
  background: linear-gradient(90deg,#00a381,#00c49a);
  border-radius: 3px;
  align-self: center;
}

  @keyframes pulse {
      0% {transform:scale(1);opacity:0.4;}
      50% {transform:scale(1.2);opacity:0.7;}
      100% {transform:scale(1);opacity:0.4;}
    }
    .mini-pill {
      background:#00b38c1a;
      border:1px solid #00b38c40;
      border-radius:50px;
      color:#00e6a0;
      padding:8px 18px;
      font-weight:500;
      font-size:0.95rem;
      backdrop-filter:blur(6px);
      transition:all 0.3s ease;
    }
    .mini-pill:hover {
      background:#00b38c33;
      transform:translateY(-2px);
    }
     #faq .faq-item {
    border:none;
    border-radius:16px;
    background:#fff;
    box-shadow:0 4px 14px rgba(0,0,0,0.05);
    overflow:hidden;
    transition:all .25s ease;
  }
  #faq .faq-item:hover {
    transform:translateY(-3px);
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
  }
  #faq .accordion-button {
    font-weight:600;
    font-size:1.05rem;
    color:#0d0d0d;
    padding:1rem 1.25rem;
    background:none;
    box-shadow:none;
  }
  #faq .accordion-button:not(.collapsed) {
    color:var(--brand);
    background:linear-gradient(90deg,#e8f9f3 0%,#ffffff 100%);
  }
  #faq .accordion-body {
    color:#555;
    line-height:1.6;
  }