:root {
    --primary-color: #0056fd;
    --text-dark: #0a0f1b;
    --text-grey: #4a5568;
    --background-light: #f2f6ff;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --green: #28a745; /* Цвет для отметки "Доволен" */
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-light);
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 3.5rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.benefit-card {
    background-color: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin: 0;
}

.chart-section {
    margin: 5rem 0;
    text-align: center;
}

.chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.chart {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chart-bar .bar {
    height: 40px;
    border-radius: 20px;
    background-color: var(--primary-color);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.chart-bar.one-day-dom .bar {
    background: linear-gradient(90deg, var(--primary-color), #004ad9);
}

.chart-bar.private .bar {
    background: linear-gradient(90deg, var(--text-grey), #718096);
}

.chart-bar .bar-label {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: bold;
    min-width: 150px;
    text-align: left;
}

.chart-description {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-top: 2rem;
}

.section-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 1.4rem;
    text-decoration: none;
    font-size: 1.5rem;
    transition: background 0.3s;
    margin-top: 3rem;
    margin-bottom: 8rem;
}

.section-button:hover {
    background: #004ad9;
}

/* Секция с отзывами */
.reviews-section {
    margin: 5rem 0;
    text-align: center;
}

.review-card {
    background-color: var(--white);
    border-radius: 1.5rem;
    padding: 2rem 0 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Фиксируем высоту карточки */
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 1rem;
    flex-grow: 1; /* Текст занимает доступное пространство */
}

.review-author {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.review-status {
    font-size: 0.9rem;
    color: var(--green);
    font-weight: bold;
    margin-top: 0.5rem;
}

/* Градиенты на фоне */
.blur-ball {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
}

.ball-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 253, 0.15), transparent);
    top: -200px;
    left: -200px;
}

.ball-2 {
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 253, 0.15), transparent);
    bottom: -200px;
    right: -200px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .chart-bar .bar-label {
        font-size: 1rem;
    }
}


#chartExplanation {
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#chartExplanation h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

#chartExplanation p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 1rem;
}

#chartExplanation ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#chartExplanation ul li {
    font-size: 1rem;
    color: var(--text-grey);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

#chartExplanation ul li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.25rem;
}

#chartExplanation .highlight {
    color: var(--primary-color);
    font-weight: 600;
}