/* ===== СТРАНИЦА О НАС ===== */
.about-page {
    min-height: 100vh;
    padding: 40px 20px 80px;
    background: linear-gradient(180deg, #fef9e7 0%, #ffffff 35%, #f5f5f7 100%);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== ГЕРОЙ ===== */
.about-hero {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 48px;
}

.hero-badge {
    display: inline-block;
    background: #fff8e1;
    color: #f57f17;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 18px;
    color: #6a6a6c;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== ПРЕИМУЩЕСТВА ===== */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid #f0ebe3;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #6a6a6c;
    line-height: 1.6;
}

.feature-card strong {
    color: #c84a1e;
    font-weight: 700;
}

/* ===== ДОСТАВКА ===== */
.about-delivery {
    background: white;
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid #f0ebe3;
}

.about-delivery h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.about-delivery > p {
    font-size: 16px;
    color: #5a5a5c;
    line-height: 1.6;
    margin-bottom: 24px;
}

.delivery-list {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.delivery-list li {
    font-size: 16px;
    color: #3a3a3c;
    padding: 10px 0;
    border-bottom: 1px solid #f0ebe3;
}

.delivery-list li:last-child {
    border-bottom: none;
}

.btn-delivery {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6fb34a;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-delivery:hover {
    color: #5a9a3a;
}

/* ===== CTA ===== */
.about-cta {
    text-align: center;
    padding: 48px 20px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid #f0ebe3;
}

.about-cta h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.about-cta > p {
    font-size: 16px;
    color: #6a6a6c;
    margin-bottom: 24px;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #6fb34a;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(111, 179, 74, 0.35);
}

.btn-order:hover {
    background: #5a9a3a;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(111, 179, 74, 0.45);
}

/* ===== АДАПТИВ ===== */
@media (max-width: 900px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-delivery {
        padding: 28px;
    }

    .about-hero {
        padding: 40px 16px;
    }
}