body {
  font-family: Inter, system-ui, Arial;
  margin: 0;
  background: #f7fafc;
  color: #0f1724;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

.back-btn {
  display: inline-block;
  margin-bottom: 24px;
  color: #0066ff;
  text-decoration: none;
  font-weight: 600;
}
.back-btn:hover {
  text-decoration: underline;
}

.base-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #f8f8f8;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgb(7 13 28 / 45%);
}

.base-container{
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
}

.base-container-title{
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.base-img {
  position: relative;
}
.base-img img {
  max-width: 450px;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  object-fit: cover;
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0066ff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.base-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.base-info h1 {
  font-size: 28px;
  margin-bottom: 12px;
}

.base-info .audience {
  font-size: 16px;
}

.base-info .description {
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.prices {
  font-size: 15px;
  margin-bottom: 18px;
}
.prices div {
  font-size: 16px;
  margin-bottom: 6px;
}

.stats {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.stat-box {
  background: #d7e1eb;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  flex: 1;
}
.stat-number {
  font-size: 24px;
  font-weight: 700;
}
.stat-label {
  font-size: 14px;
  color: #64748b;
}


.btn-buy {
	text-align: center;
	height: 25px;
	width: 100%;
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #0066ff;  /* основной цвет кнопки */
    border: 2px solid #0066ff;
    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease; /* только цвет текста */
}

.btn-buy:hover {
    color: #fff; /* оставляем текст белым при наведении */
    transform: scale(1.04);
}

/* Блик */
.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.5s ease;
}

.btn-buy:hover::before {
    left: 125%;
}





/* === ФАГ === */

.faq-section {
    margin-top: 40px;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
	  margin-bottom: 20px;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #0f1c3f;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: #1a2b5c;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #0066ff;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    color: #3b3b3b;
    line-height: 1.5;
}

.btn-container {
	gap: 20px;
	display: flex;
    justify-content: space-between;
}



@media(max-width: 768px) {
	.container {
		padding: 10px;
	}

	.base-wrapper {
		flex-wrap: wrap;
		padding: 0px;
		gap: 0px;
	}

	.base-img img {
		width: 100%;
		border-bottom-right-radius: 0px;
		border-bottom-left-radius: 0px;
	}

	.base-info {
		padding-inline: 20px;
		margin-top: -10px;
	}
	.base-info h1 {
		font-size: 22px;
	}
	.base-info .audience {
		font-size: 18px;
	}
	.base-info .description {
		font-size: 16px;
	}
	.prices div {
		font-size: 18px;
		margin-top: 6px;
	}
	.stat-number {
		font-size: 16px;
	}
	.stat-label {
		font-size: 14px;
	}
	.btn-buy {
		text-align: center;
		font-size: 17px;
		padding: 8px 0px;
		border-radius: 11px;
		margin-bottom: 20px;
	}

	.back-btn {
		font-size: 18px;
	}

	.faq-section {
		margin: 30px 10px;
		padding: 20px;
		width: auto;
	}
	.faq-title {
		font-size: 1.5rem;
		margin-bottom: 5px;
	}
	.faq-answer p {
		text-align: left;
	}

	.base-container {
		flex-direction: column;
		gap: 0px;
	}

	.btn-container {
		gap: 0px;
		justify-content: space-between;
		display: flex;
		flex-direction: column;
	}

	.base-title {
		font-size: 22px;
		padding-inline: 20px;
	}



}
