/* О компании — вёрстка как на боевом bumlavka.ru/about. Тёплая палитра, адаптив. */
/* Размеры шрифтов приведены к паритету с /delivery/ (default.css: h1=75, h2=40, h3=30, p=20). */

/* Hero — текст слева, фото справа */
.about-hero {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 44px;
    align-items: center;
    margin: 12px 0 56px;
}
.about-hero__title {
    font-size: 48px;
    line-height: 1.05;
    font-weight: 300;
    color: #2a2a2a;
    margin: 0 0 24px;
}
.about-hero__lead p {
    font-size: 20px;
    line-height: 1.5;
    color: #555;
    margin: 0 0 16px;
}
.about-hero__lead p:last-child { margin-bottom: 0; }
.about-hero__tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 14px 20px;
    background: #f6f4ec;
    border-radius: 14px;
    font-weight: 600;
    color: #647d19;
    font-size: 20px;
}
.about-hero__tagline img { flex: none; }
.about-hero__media img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Главное в цифрах — безрамочные крупные числа */
.about-stats { margin: 0 0 56px; }
.about-stats__title {
    font-size: 40px;
    font-weight: 400;
    color: #2a2a2a;
    margin: 0 0 32px;
    line-height: 1.1;
}
.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}
.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.about-stat__num {
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 700;
    color: #647d19;
    line-height: 1;
}
.about-stat__icon { width: 56px; height: 56px; display: block; }
.about-stat__label {
    color: #555;
    font-size: 20px;
    line-height: 1.35;
    max-width: 220px;
}

/* Дизайн упаковки под бренд (тёмно-зелёная панель) */
.about-branding {
    margin: 0 0 56px;
    background: #2c3e0a;
    color: #fff;
    border-radius: 22px;
    padding: 44px 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-branding__title { font-size: 40px; font-weight: 400; line-height: 1.1; margin: 0 0 16px; color: #fff; }
.about-branding__text p { color: #e7ecd6; line-height: 1.5; margin: 0 0 20px; font-size: 20px; }
.about-branding__meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 0 0 24px; }
.about-branding__meta-item { color: #e7ecd6; font-size: 20px; }
.about-branding__meta-item strong { color: #fff; white-space: nowrap; }
.about-branding__btn {
    display: inline-block; background: #c9d18f; color: #2c3e0a; font-weight: 600;
    padding: 14px 28px; border-radius: 12px; text-decoration: none; transition: background-color .2s ease; font-size: 18px;
}
.about-branding__btn:hover { background: #fff; }
.about-branding__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.about-branding__list li { position: relative; padding-left: 30px; line-height: 1.45; color: #f4f6ec; font-size: 20px; }
.about-branding__list li::before {
    content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%;
    background: #c9d18f url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c3e0a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* Помощь + форма */
.about-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
    margin: 0 0 24px;
}
.about-cta__panel {
    background: #647d19;
    color: #fff;
    border-radius: 22px;
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-cta__title { font-size: 40px; font-weight: 400; line-height: 1.1; color: #fff; margin: 0 0 16px; }
.about-cta__panel p { color: #eef2df; line-height: 1.5; margin: 0; font-size: 20px; }
.about-form {
    background: #fff;
    border: 1px solid #e7e3d4;
    border-radius: 22px;
    padding: 32px 34px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .05);
}
.about-form__title { font-size: 30px; font-weight: 400; line-height: 1.1; color: #2a2a2a; margin: 0 0 20px; }
.about-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.about-form input[type="text"],
.about-form input[type="tel"] {
    width: 100%; padding: 14px 18px; border: 1px solid #e0ddd0; border-radius: 12px; background: #fff; font-size: 18px; color: #333;
}
.about-form input::placeholder { color: #999; }
.about-form input:focus { outline: 0; border-color: #647d19; }
.about-form__consent {
    display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #666; line-height: 1.45; margin: 6px 0 18px; cursor: pointer;
}
.about-form__consent input { margin-top: 2px; flex: none; }
.about-form__consent a { color: #647d19; }
.about-form__submit {
    width: 100%; padding: 16px 20px; border: 0; border-radius: 12px; background: #647d19; color: #fff; font-size: 18px; font-weight: 600; cursor: pointer; transition: background-color .2s ease;
}
.about-form__submit:hover { background: #506415; }
.about-form .form-msg { margin: 8px 0 0; font-size: 14px; }
.about-form .form-msg--ok { color: #647d19; }
.about-form .form-msg--err { color: #c0392b; }

/* Адаптив */
@media (max-width: 991.98px) {
    .about-hero { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
    .about-hero__title { font-size: 38px; }
    .about-hero__media img { max-height: 320px; }
    .about-stats__title { font-size: 30px; }
    .about-branding__title { font-size: 30px; }
    .about-cta__title { font-size: 30px; }
    .about-branding,
    .about-cta { grid-template-columns: 1fr; }
    .about-branding { padding: 28px 22px; }
    .about-cta__panel { padding: 26px 24px; }
    .about-form { padding: 24px 22px; }
    .about-form__title { font-size: 24px; }
}
@media (max-width: 560px) {
    .about-form__row { grid-template-columns: 1fr; }
    .about-hero__title { font-size: 32px; }
    .about-stats__title,
    .about-branding__title,
    .about-cta__title { font-size: 26px; }
}
