/* --- Базовые настройки страницы --- */
body {
    scroll-behavior: smooth;
}

button:focus {
    outline: none;
}

input::placeholder, 
textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* --- Декоративные элементы и градиенты --- */
.text-gradient {
    background: linear-gradient(90deg, #a855f7, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Секция Timeline (Хронология) --- */
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #a855f7, #2dd4bf, transparent);
}

.timeline-dot {
    transition: all 0.5s ease;
}

.timeline-item.active .timeline-dot {
    background: #2dd4bf;
    box-shadow: 0 0 20px #2dd4bf;
    transform: scale(1.5);
}

/* --- Модальные окна --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow-y: auto;
}

.modal-content {
    background: #111;
    margin: 5vh auto;
    padding: 40px;
    border: 1px solid #333;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.2);
}

/* --- Карточки отзывов (Testimonials) --- */
.testimonial-card {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover {
    transform: rotate(0) scale(1.02) !important;
    z-index: 10;
}

/* --- Секция Privacy Policy (Конфиденциальность) --- */
.privacyNestZone {
    padding: 40px 20px 0 20px;
}

.privacyNestZone h1, 
.privacyNestZone h2, 
.privacyNestZone h3, 
.privacyNestZone h4, 
.privacyNestZone h5 {
    color: #333;
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.25;
}

.privacyNestZone h1 {
    font-size: clamp(1.375rem, 1.3rem + 0.38vw, 1.75rem) !important;
    /*
	font-size: 28px;
    */
	color: #ffffff;
}
.privacyNestZone h2 {
    font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem) !important;
    /*
	font-size: 24px;
    */
	color: #ffffff;
}
.privacyNestZone h3 {
    font-size: clamp(1.125rem, 1.1rem + 0.13vw, 1.25rem) !important;
    /*
	font-size: 20px;
    */
	color: #ffffff;
}
.privacyNestZone h4 {
    font-size: 18px;
}
.privacyNestZone h5 {
    font-size: 16px;
}

.privacyNestZone p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 16px;
    color: #afadad;
}

.privacyNestZone ul {
    padding-left: 24px;
    margin-top: 0;
    margin-bottom: 16px;
    list-style-type: disc;
}

.privacyNestZone li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #e2c5c5;
}

.privacyNestZone > *:last-child {
    margin-bottom: 0;
}

.items__fixed{
	margin: 0 auto;
	margin-bottom: 20px;
}

.text__centered{
	text-align: center;
}

.bg__collor{
	background-color: #1d1212;
}

.stats__section {
    background-color: #121212 !important;
    color: #ffffff !important;
}

.stats__section .text-gray-600 {
    color: rgba(255, 255, 255, 0.7) !important; /* Чтобы подписи были читаемы на темном */
}

.menu__link{
	display: flex;
	flex-direction: column;
	
}

.burger__btnn{
    display: none !important;
}

.link__help{
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem) !important;
}

/* --- Адаптивность --- */
@media (max-width: 1100px) {
    .nav-links{
		display: none !important;
	}

    .burger__btnn{
        display: block !important;
    }
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    .timeline-dot {
        position: absolute;
        left: 9px;
    }
    .timeline-item {
        padding-left: 50px;
        align-items: flex-start;
    }
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 1.8rem !important; }

	.h2__margin{
		margin-top: 130px !important;
	}
}

@media (max-width: 550px) {
    input::placeholder {
        font-size: clamp(0.5rem, -0.022rem + 2.61vw, 0.875rem);
    }
}

@media (max-width: 400px) {
    .text__adaptyve{
		font-size: 18px !important;
	}

	.h2__margin{
		margin-top: 250px !important;
	}
}