/* =========================================
   ГЛОБАЛЬНІ НАЛАШТУВАННЯ ТА СКРОЛБАРИ
   ========================================= */
::-webkit-scrollbar { display: none !important; width: 0 !important; height: 0 !important; }
* { -ms-overflow-style: none !important; scrollbar-width: none !important; }

.top-spacing { height: 40px; }

.section-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.text-formatted {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* =========================================
   GLASSMORPHISM ПАНЕЛІ
   ========================================= */
.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

/* =========================================
   HERO БЛОК
   ========================================= */
.about-hero-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    margin-bottom: 40px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 15px;
    line-height: 1.2;
}

.about-lead {
    max-width: 800px;
    margin-bottom: 25px;
}

.about-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Кнопки */
.btn-lg {
    padding: 16px 28px;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary {
    background: #f97316;
    color: #fff;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-secondary:hover {
    border-color: #f97316;
    background: rgba(255, 255, 255, 0.08);
}

/* Статистика в Hero */
.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.about-stat-box {
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.3s;
}

.about-stat-box:hover {
    transform: translateY(-3px);
    border-color: rgba(249, 115, 22, 0.2);
}

.about-stat-box strong {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
}

.about-stat-box span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.highlight-stat {
    background: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.15);
}

.highlight-stat strong {
    color: #f97316;
}

/* =========================================
   ОСНОВНА СІТКА СТОРІНКИ
   ========================================= */
.content-layout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* =========================================
   ЛІВА КОЛОНКА (Умови повернення)
   ========================================= */
.product-panel {
    padding: 30px;
    margin-bottom: 30px;
}

.panel-header {
    margin-bottom: 25px;
}

.panel-header h2,
.panel-header h3 {
    margin: 10px 0 0 0;
    font-size: 1.6rem;
    color: #fff;
}

.about-features-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item-icon {
    width: 56px;
    height: 56px;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item-text h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 10px;
}

.feature-item-text p {
    margin: 0;
}

/* =========================================
   ПРАВА КОЛОНКА (Сайдбар)
   ========================================= */
.sticky-panel {
    position: sticky;
}

.top-panel {
    top: 20px;
    z-index: 2;
}

.bottom-panel {
    top: 260px; /* Відступ, щоб нижня картка липла під верхньою */
    z-index: 1;
}

.highlight-panel {
    background: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.2);
}

/* Список "Що підготувати" */
.helper-bot-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.helper-bot-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 600;
}

/* Контакти */
.trust-contact-grid.compact-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.trust-contact-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trust-contact-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.trust-contact-value {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
}

.highlight-text {
    color: #f97316;
}

.trust-mini-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 15px;
    font-style: italic;
}

/* =========================================
   АДАПТАЦІЯ (МОБІЛЬНІ ПРИСТРОЇ)
   ========================================= */
@media (max-width: 992px) {
    .content-layout-grid {
        grid-template-columns: 1fr;
    }

    .sticky-panel {
        position: static;
    }
}

@media (max-width: 768px) {
    .about-hero-card { padding: 25px 20px; }
    .about-title { font-size: 2rem; }

    .about-hero-stats {
        grid-template-columns: 1fr;
    }

    .about-actions { flex-direction: column; }
    .btn-lg { width: 100; justify-content: center; }

    .product-panel { padding: 20px; }

    .about-feature-item {
        flex-direction: column;
        gap: 15px;
    }
}
