/* ===== ОБЩИЕ СТИЛИ ДЛЯ ЗАГОЛОВКОВ И ТЕКСТА ===== */
#main-title {
font-size: 48px;
font-weight: 700;
color: #ffffff;
line-height: 1.2;
margin-bottom: 30px;
margin-top: 0;
font-family: Inter, Arial, sans-serif;
}

/* ===== СТИЛИ ДЛЯ H2 ЗАГОЛОВКОВ ===== */
h2:not(.faq h2):not(.faq-container h2):not([class*="faq"] h2) {
font-size: 32px;
font-weight: 600;
color: #ffffff;
line-height: 1.3;
font-family: Inter, Arial, sans-serif;
display: flex;
align-items: center;
gap: 15px;
position: relative;
padding-bottom: 15px;
margin-bottom: 30px;
margin-top: 40px;
transition: color 0.4s ease;
padding-left: 0;
}

h2:not(.faq h2):not(.faq-container h2):not([class*="faq"] h2).in-view {
color: #ffffff;
}

h2:not(.faq h2):not(.faq-container h2):not([class*="faq"] h2).in-view::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 80px;
height: 3px;
background: linear-gradient(90deg, #e50914, #ff2d2d);
border-radius: 2px;
transform-origin: left center;
animation: lineExpand 0.8s ease-out forwards;
}

h2:not(.faq h2):not(.faq-container h2):not([class*="faq"] h2) .icon {
font-size: 36px;
flex-shrink: 0;
display: inline-flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
border-radius: 8px;
background: #e50914;
color: white;
box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

h2:not(.faq h2):not(.faq-container h2):not([class*="faq"] h2) .icon img {
width: 28px;
height: 28px;
object-fit: contain;
filter: brightness(0) invert(1);
}

/* ===== СТИЛИ ДЛЯ H3 ЗАГОЛОВКОВ ===== */
h3:not(.faq h3):not(.faq-container h3):not([class*="faq"] h3) {
font-size: 24px;
font-weight: 600;
color: #ffffff;
line-height: 1.2;
margin-bottom: 20px;
margin-top: 30px;
font-family: Inter, Arial, sans-serif;
position: relative;
padding: 12px 30px;
min-height: 48px;
display: flex;
align-items: center;
background: linear-gradient(135deg, #1e1e22 0%, #232327 100%);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow:
0 0 0 1px rgba(255, 255, 255, 0.02),
0 10px 25px rgba(0, 0, 0, 0.35),
0 4px 20px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
}

h3:not(.faq h3):not(.faq-container h3):not([class*="faq"] h3)::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 6px;
background: linear-gradient(to bottom, #e50914, #ff2d2d);
border-radius: 12px 0 0 12px;
}

h3:not(.faq h3):not(.faq-container h3):not([class*="faq"] h3):hover {
transform: translateY(-2px);
box-shadow:
0 0 0 1px rgba(255, 255, 255, 0.05),
0 15px 35px rgba(0, 0, 0, 0.4),
0 8px 25px rgba(229, 9, 20, 0.15);
}

h3:not(.faq h3):not(.faq-container h3):not([class*="faq"] h3).in-view {
color: #ffffff;
}

/* ===== СТИЛИ ДЛЯ ПАРАГРАФОВ ===== */
#main-description,
#section-description,
#features-description,
#benefits-description,
#intro-text {
font-size: 18px;
font-weight: 400;
color: #c0c0c0;
line-height: 1.6;
margin-bottom: 15px;
margin-top: 0;
font-family: Inter, Arial, sans-serif;
}

#intro-text {
grid-column: 1 / -1;
order: -1;
padding: 0;
background: none;
border: none;
margin-bottom: 25px;
}

#feature-list li,
#benefit-list li {
font-size: 18px;
font-weight: 400;
color: #c0c0c0;
line-height: 1.6;
margin-bottom: 15px;
font-family: Inter, Arial, sans-serif;
}

/* ===== КНОПКИ ===== */
#main-btn,
#secondary-btn,
#action-btn {
transition: transform 0.2s ease, box-shadow 0.2s ease;
position: relative;
overflow: hidden;
background: linear-gradient(45deg, #e50914, #ff2d2d);
border: none;
border-radius: 8px;
color: white;
cursor: pointer;
}

#main-btn:hover,
#secondary-btn:hover,
#action-btn:hover {
transform: scale(1.03);
box-shadow: 0 8px 20px rgba(229, 9, 20, 0.3);
}

#main-btn:active,
#secondary-btn:active,
#action-btn:active {
transform: scale(0.98);
box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

/* ===== АНИМАЦИИ ===== */
@keyframes lineExpand {
0% {
transform: scaleX(0);
transform-origin: left center;
opacity: 0;
}
100% {
transform: scaleX(1);
transform-origin: left center;
opacity: 1;
}
}

@keyframes optimizedPulse {
0%, 100% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.05);
opacity: 0.95;
}
}

@keyframes optimizedWaves {
0% {
box-shadow:
0 0 0 0 rgba(229, 9, 20, 0.8),
0 0 0 0 rgba(255, 45, 45, 0.6),
0 0 0 0 rgba(229, 9, 20, 0.4);
}
25% {
box-shadow:
0 0 0 15px rgba(229, 9, 20, 0.4),
0 0 0 0 rgba(255, 45, 45, 0.6),
0 0 0 0 rgba(229, 9, 20, 0.4);
}
50% {
box-shadow:
0 0 0 25px rgba(229, 9, 20, 0.2),
0 0 0 20px rgba(255, 45, 45, 0.4),
0 0 0 0 rgba(229, 9, 20, 0.4);
}
75% {
box-shadow:
0 0 0 35px rgba(229, 9, 20, 0.1),
0 0 0 30px rgba(255, 45, 45, 0.2),
0 0 0 25px rgba(229, 9, 20, 0.2);
}
100% {
box-shadow:
0 0 0 45px rgba(229, 9, 20, 0),
0 0 0 40px rgba(255, 45, 45, 0),
0 0 0 35px rgba(229, 9, 20, 0);
}
}

@keyframes slideInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes zoomIn {
from {
opacity: 0;
transform: scale(0.8);
}
to {
opacity: 1;
transform: scale(1);
}
}

/* ===== КОНТЕЙНЕР ===== */
.container {
max-width: 2000px;
margin: 0 auto;
}

/* ===== БЛОК СТАТИСТИКИ ===== */
.trust-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 12px;
padding: 20px 16px;
background: linear-gradient(135deg, #1e1e22 0%, #232327 100%);
border-radius: 16px;
box-shadow:
0 0 0 1px rgba(255, 255, 255, 0.02),
0 10px 25px rgba(0, 0, 0, 0.35),
0 4px 20px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.08);
max-width: 2000px;
margin: 0 auto 40px;
position: relative;
}

.stat-item {
text-align: center;
padding: 16px 12px;
background: transparent;
border-radius: 8px;
transition: transform 0.3s ease;
border: none;
position: relative;
overflow: hidden;
}

.stat-item:not(:last-child)::after {
content: '';
position: absolute;
right: 0;
top: 20%;
bottom: 20%;
width: 1px;
background: linear-gradient(
to bottom,
transparent 0%,
rgba(255, 255, 255, 0.3) 20%,
rgba(255, 255, 255, 0.3) 80%,
transparent 100%
);
}

.stat-item:hover {
transform: translateY(-2px);
}

.stat-number {
font-size: 28px;
font-weight: bold;
color: #e50914;
margin-bottom: 6px;
line-height: 1.1;
font-family: 'Inter', Arial, sans-serif;
}

.stat-label {
font-size: 13px;
color: #c0c0c0;
font-weight: 500;
line-height: 1.2;
margin: 0;
font-family: 'Inter', Arial, sans-serif;
}

/* ===== БЛОК ПРЕИМУЩЕСТВ ===== */
.advantages-section {
background: linear-gradient(135deg, #1e1e22 0%, #232327 100%);
border-radius: 16px;
box-shadow:
0 0 0 1px rgba(255, 255, 255, 0.02),
0 10px 25px rgba(0, 0, 0, 0.35),
0 4px 20px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.08);
padding: 25px 25px 25px 50px;
margin: 40px auto;
max-width: 2000px;
position: relative;
}

.advantages-title {
font-size: 32px;
font-weight: 700;
color: #ffffff;
margin-top: 40px;
margin-bottom: 25px;
font-family: 'Inter', Arial, sans-serif;
opacity: 0;
animation: fadeInUp 0.8s ease forwards;
animation-delay: 0.2s;
position: relative;
text-align: left;
padding-left: 0;
}

.advantages-title::before {
content: '';
position: absolute;
left: -25px;
top: 0;
bottom: 0;
width: 6px;
background: linear-gradient(to bottom, #e50914, #ff2d2d);
border-radius: 3px;
}

.advantages-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
align-items: stretch;
}

.advantage-item {
background: linear-gradient(145deg, #1a1a1f, #141417);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 12px;
padding: 20px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
min-height: 75px;
display: flex;
align-items: center;
opacity: 0;
animation: slideInUp 0.8s ease forwards;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.advantage-item:nth-child(1) { animation-delay: 0.4s; }
.advantage-item:nth-child(2) { animation-delay: 0.6s; }
.advantage-item:nth-child(3) { animation-delay: 0.8s; }
.advantage-item:nth-child(4) { animation-delay: 1.0s; }
.advantage-item:nth-child(5) { animation-delay: 1.2s; }

.advantage-item:hover {
transform: scale(1.02);
border-color: rgba(229, 9, 20, 0.3);
box-shadow: 0 10px 25px rgba(255, 0, 0, 0.25);
}

.advantage-item::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 4px;
background: linear-gradient(to bottom, #e50914, #ff2d2d);
opacity: 0;
transition: opacity 0.3s ease;
}

.advantage-item:hover::before {
opacity: 1;
}

.advantage-text {
font-size: 16px;
font-weight: 500;
color: #eaeaea;
line-height: 1.5;
margin: 0;
font-family: 'Inter', Arial, sans-serif;
display: flex;
align-items: center;
gap: 12px;
width: 100%;
}

.benefit-icon {
font-size: 18px;
margin-right: 0;
flex-shrink: 0;
color: #e50914;
}

.advantage-item:hover .advantage-text {
transform: translateX(4px);
}

/* ===== ЗАКРЕПЛЕННАЯ КНОПКА ===== */
#sticky-btn{
margin: 0;
}

#sticky-download {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9999;
background: #1c1c1e;
border-radius: 8px;
padding: 8px 12px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
border: 1px solid rgba(255, 255, 255, 0.2);
display: block;
visibility: visible;
opacity: 1;
}

#sticky-download .sticky-btn {
background: #e50914;
border: none;
border-radius: 8px;
color: #ffffff;
font-size: 16px;
font-weight: bold;
padding: 12px 25px;
min-height: 48px;
min-width: 220px;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 0.5px;
display: flex;
align-items: center;
justify-content: space-between;
text-align: left;
cursor: pointer;
font-family: Inter, Arial, sans-serif;
transition: all 0.3s ease;
position: relative;
overflow: visible;
animation:
optimizedPulse 2s ease-in-out infinite,
optimizedWaves 3s ease-in-out infinite;
}

#sticky-download .sticky-btn:hover {
background: #ff2d2d;
transform: translateY(-3px) scale(1.05);
box-shadow: 0 10px 30px rgba(229, 9, 20, 0.6);
animation: none;
}

#sticky-download .sticky-btn:active {
transform: translateY(0) scale(0.95);
box-shadow: 0 3px 12px rgba(229, 9, 20, 0.5);
animation: none;
}

#sticky-download .btn-text {
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
}

#sticky-download .btn-title {
font-size: 16px;
font-weight: bold;
line-height: 1.2;
margin-bottom: 2px;
color: #ffffff;
}

#sticky-download .btn-subtitle {
font-size: 11px;
opacity: 0.9;
font-weight: 400;
text-transform: none;
letter-spacing: normal;
color: #ffffff;
}

#sticky-download .btn-icon {
width: 18px;
height: 18px;
object-fit: contain;
filter: brightness(0) invert(1);
margin-left: 15px;
flex-shrink: 0;
}

#sticky-download .sticky-info {
color: #c0c0c0;
font-size: 11px;
text-align: center;
margin-top: 6px;
font-weight: 500;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
#main-title {
font-size: 36px;
margin-bottom: 25px;
}

h2:not(.faq h2):not(.faq-container h2):not([class*="faq"] h2) {
font-size: 28px;
margin-bottom: 20px;
margin-top: 30px;
gap: 12px;
}

h2:not(.faq h2):not(.faq-container h2):not([class*="faq"] h2) .icon {
font-size: 28px;
width: 45px;
height: 45px;
}

h2:not(.faq h2):not(.faq-container h2):not([class*="faq"] h2) .icon img {
width: 24px;
height: 24px;
}

h3:not(.faq h3):not(.faq-container h3):not([class*="faq"] h3) {
font-size: 20px;
padding: 10px 20px;
min-height: 40px;
margin-bottom: 15px;
margin-top: 25px;
}

h3:not(.faq h3):not(.faq-container h3):not([class*="faq"] h3)::before {
width: 4px;
}

#main-description,
#section-description,
#features-description,
#benefits-description,
#intro-text {
font-size: 18px;
}

#intro-text {
margin-bottom: 20px;
}

#feature-list li,
#benefit-list li {
font-size: 18px;
}

.trust-stats {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
padding: 16px 12px;
margin: 0 auto 30px;
}

.stat-item {
padding: 12px 8px;
}

.stat-number {
font-size: 24px;
margin-bottom: 4px;
}

.stat-label {
font-size: 12px;
}

.stat-item:nth-child(2n)::after {
display: none;
}

.stat-item:nth-child(odd):not(:last-child)::after {
display: block;
}

.advantages-section {
padding: 20px 16px;
margin: 30px auto;
}

.advantages-title {
font-size: 24px;
margin-top: 30px;
margin-bottom: 20px;
}

.advantages-grid {
grid-template-columns: 1fr;
gap: 12px;
}

.advantage-item {
padding: 12px 16px;
min-height: 65px;
}

.advantage-text {
font-size: 15px;
gap: 8px;
}

.benefit-icon {
font-size: 18px;
}

#sticky-download {
bottom: 20px;
right: 15px;
left: 15px;
padding: 10px 15px;
}

.menu.open ~ #sticky-download,
body.nav-open #sticky-download {
bottom: 200px;
}

#sticky-download .sticky-btn {
font-size: 16px;
padding: 15px 25px;
min-width: auto;
}

#sticky-download .btn-title {
font-size: 16px;
}

#sticky-download .btn-subtitle {
font-size: 12px;
}

#sticky-download .btn-icon {
width: 18px;
height: 18px;
}

#sticky-download .sticky-info {
font-size: 12px;
margin-top: 8px;
}
}

@media (max-width: 480px) {
#main-title {
font-size: 28px;
margin-bottom: 20px;
}

h2:not(.faq h2):not(.faq-container h2):not([class*="faq"] h2) {
font-size: 24px;
margin-bottom: 18px;
margin-top: 25px;
gap: 10px;
flex-direction: column;
text-align: center;
}

h2:not(.faq h2):not(.faq-container h2):not([class*="faq"] h2) .icon {
font-size: 24px;
width: 40px;
height: 40px;
margin: 0 auto;
}

h3:not(.faq h3):not(.faq-container h3):not([class*="faq"] h3) {
font-size: 18px;
padding: 8px 18px;
min-height: 36px;
margin-bottom: 12px;
margin-top: 20px;
}

h3:not(.faq h3):not(.faq-container h3):not([class*="faq"] h3)::before {
width: 3px;
}

#intro-text {
margin-bottom: 18px;
}

.trust-stats {
grid-template-columns: 1fr;
gap: 8px;
padding: 14px 10px;
}

.stat-item {
padding: 10px 6px;
}

.stat-number {
font-size: 22px;
}

.stat-label {
font-size: 11px;
}

.stat-item::after {
display: none !important;
}

.advantages-section {
padding: 16px 16px 16px 30px;
}

.advantages-title {
font-size: 24px;
margin-top: 25px;
margin-bottom: 15px;
}

.advantages-title::before {
left: -16px;
width: 3px;
}

.advantage-item {
padding: 14px 16px;
min-height: 60px;
}

.advantage-text {
font-size: 14px;
gap: 8px;
}

#sticky-download {
bottom: 15px;
right: 10px;
left: 10px;
padding: 8px 12px;
}

.menu.open ~ #sticky-download,
body.nav-open #sticky-download {
bottom: 180px;
}

#sticky-download .sticky-btn {
font-size: 15px;
padding: 12px 20px;
}

#sticky-download .btn-title {
font-size: 15px;
}

#sticky-download .btn-subtitle {
font-size: 11px;
}

#sticky-download .btn-icon {
width: 32px;
height: 32px;
}
}