/* =========================================
   ГЛОБАЛЬНІ СТИЛІ СТОРІНКИ ПРО НАС
   ========================================= */
.top-spacing { height: 40px; }

.section {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 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;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.text-formatted {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    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;
    padding: 35px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-5px);
}

/* КНОПКИ */
.about-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn-lg {
    padding: 16px 28px;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    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-section {
    padding-top: 20px;
}

.about-hero-card {
    text-align: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.about-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-lead {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.15rem;
}

.about-actions {
    justify-content: center;
    margin-bottom: 40px;
}

.about-hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.feature-tag svg {
    color: #f97316;
}

/* =========================================
   СІТКИ: ХТО МИ & ПЕРЕВАГИ
   ========================================= */
.about-grid-3,
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card-icon,
.feature-item-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-card h3,
.feature-item-text h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.about-feature-item {
    display: flex;
    flex-direction: column;
}

/* =========================================
   ЯК ЦЕ ПРАЦЮЄ (КРОКИ)
   ========================================= */
.about-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.about-step-card {
    text-align: left;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.about-step-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* =========================================
   КОНТАКТИ ТА ГРАФІК
   ========================================= */
.trust-contact-card {
    max-width: 900px;
    margin: 0 auto;
}

.trust-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.trust-contact-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-contact-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.trust-contact-value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-text {
    color: #f97316;
}

.trust-mini-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    opacity: 0.8;
}

/* =========================================
   ЗАКЛИК ДО ДІЇ (CTA)
   ========================================= */
.about-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    padding: 50px;
}

.sale-border-glow {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.1);
}

.about-cta-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin: 15px 0 20px;
    line-height: 1.2;
}

.cta-margin {
    margin-top: 30px;
    justify-content: flex-start;
}

.about-cta-decor {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

/* =========================================
   АДАПТАЦІЯ (MOBILE)
   ========================================= */
@media (max-width: 992px) {
    .about-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-margin {
        justify-content: center;
    }

    .about-cta-decor {
        right: 50%;
        transform: translate(50%, -50%);
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .about-title { font-size: 2rem; }
    .section-header h2 { font-size: 1.8rem; }
    .about-cta-content h2 { font-size: 1.8rem; }

    .about-hero-card { padding: 40px 20px; }

    .about-actions { flex-direction: column; }
    .btn-lg { width: 98; justify-content: center; }
}
