/* ============================================================
   landings.css — стили посадочных страниц ТФ «Соня»
   Палитра сайта: синий #2976b3, градиент #438eca→#1e6dab,
   заголовки caviar_dreams #3a3d43, текст #222.
   Всё под неймспейсом .lp, чтобы не пересекаться с site.css.
   ============================================================ */

.lp {
    font-size: 16px;
    line-height: 1.6;
    color: #2b2b2b;
}
.lp .wrapper { overflow: visible; }
.lp-inner {
    padding: 0 15px;
}

.lp h1, .lp h2, .lp h3, .lp h4 {
    font-family: 'caviar_dreams', 'Open Sans', sans-serif;
    color: #3a3d43;
    font-weight: normal;
    line-height: 1.25;
    margin: 0;
}

/* ---------- HERO ---------- */
.lp-hero {
    position: relative;
    background: #2d7ab6;
    background: linear-gradient(135deg, #438eca 0%, #1e6dab 55%, #17578a 100%);
    color: #fff;
    overflow: hidden;
}
.lp-hero:after {
    content: '';
    position: absolute;
    right: -120px; top: -120px;
    width: 420px; height: 420px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
}
.lp-hero .lp-inner {
    position: relative;
    z-index: 2;
    padding: 48px 15px 44px;
    max-width: 760px;
}
.lp-hero .lp-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(255,255,255,.15);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.lp-hero h1 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 16px;
}
.lp-hero p.lp-lead {
    font-size: 18px;
    color: #eaf3fb;
    margin: 0 0 26px;
    max-width: 640px;
}
.lp-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.lp-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 6px;
    text-align: center;
    transition: all .18s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.lp-btn-primary {
    background: #fff;
    color: #1e6dab;
}
.lp-btn-primary:hover { background: #eaf3fb; transform: translateY(-1px); }
.lp-btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.6);
}
.lp-btn-ghost:hover { background: rgba(255,255,255,.12); }

.lp-hero-badges {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
}
.lp-hero-badges li {
    font-size: 14px;
    color: #eaf3fb;
    padding-left: 24px;
    position: relative;
}
.lp-hero-badges li:before {
    content: '✓';
    position: absolute; left: 0; top: -1px;
    color: #9fd0f4;
    font-weight: 700;
}

/* ---------- ГЕО-БАННЕР ---------- */
.lp-geo {
    background: #eaf3fb;
    border-bottom: 1px solid #d3e4f2;
    color: #1e5484;
    font-size: 15px;
}
.lp-geo .lp-inner {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp-geo b { color: #17578a; }

/* ---------- ЦИФРЫ / ДОВЕРИЕ ---------- */
.lp-strip {
    background: #f6f8fa;
    border-bottom: 1px solid #e6e9ed;
}
.lp-strip ul {
    list-style: none; margin: 0; padding: 26px 15px;
    display: flex; flex-wrap: wrap; gap: 22px;
    justify-content: space-between;
}
.lp-strip li {
    flex: 1 1 180px;
    text-align: center;
}
.lp-strip .num {
    display: block;
    font-family: 'caviar_dreams', sans-serif;
    font-size: 30px;
    color: #2976b3;
    line-height: 1.1;
}
.lp-strip .cap { display: block; font-size: 14px; color: #555; margin-top: 4px; }

/* ---------- СЕКЦИИ ---------- */
.lp-section { padding: 46px 0; }
.lp-section.alt { background: #f6f8fa; }
.lp-section .lp-inner { max-width: 1000px; margin: 0 auto; }
.lp-h2 {
    font-size: 27px;
    margin-bottom: 8px;
    text-align: center;
    padding-bottom: 15px;
}
.lp-sub {
    text-align: center;
    color: #667;
    font-size: 16px;
    margin: 0 auto 30px;
    max-width: 680px;
}
.lp-prose p { margin: 0 0 16px; }
.lp-prose ul { margin: 0 0 16px; padding-left: 0; list-style: none; }
.lp-prose ul li {
    position: relative; padding-left: 26px; margin-bottom: 10px;
}
.lp-prose ul li:before {
    content: ''; position: absolute; left: 4px; top: 9px;
    width: 8px; height: 8px; border-radius: 50%; background: #2976b3;
}
.lp-prose a { color: #2976b3; }

/* ---------- КАРТОЧКИ ---------- */
.lp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.lp-card {
    background: #fff;
    border: 1px solid #e6e9ed;
    border-radius: 8px;
    padding: 24px 22px;
    transition: box-shadow .2s ease, transform .2s ease;
}
.lp-section.alt .lp-card { background: #fff; }
.lp-card:hover { box-shadow: 0 8px 24px rgba(30,109,171,.10); transform: translateY(-2px); }
.lp-card .ic {
    width: 46px; height: 46px; border-radius: 10px;
    background: #eaf3fb; color: #2976b3;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 14px;
}
.lp-card h3 { font-size: 18px; margin-bottom: 8px; }
.lp-card p { margin: 0; font-size: 15px; color: #555; }

/* ---------- ЧТО ПОСТАВЛЯЕМ (список товаров) ---------- */
.lp-goods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.lp-good {
    display: block;
    text-decoration: none;
    color: #2b2b2b;
    border: 1px solid #e6e9ed;
    border-radius: 8px;
    padding: 18px 20px;
    background: #fff;
    transition: border-color .18s, box-shadow .18s;
}
.lp-good:hover { border-color: #2976b3; box-shadow: 0 6px 18px rgba(30,109,171,.08); }
.lp-good b { display: block; color: #1e6dab; font-size: 16px; margin-bottom: 3px; }
.lp-good span { font-size: 14px; color: #667; }

/* ---------- ШАГИ ---------- */
.lp-steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.lp-step {
    position: relative;
    padding: 22px 20px 20px;
    background: #fff;
    border: 1px solid #e6e9ed;
    border-radius: 8px;
}
.lp-step:before {
    counter-increment: step;
    content: counter(step);
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg,#438eca,#1e6dab);
    color: #fff; font-family: 'caviar_dreams',sans-serif; font-size: 19px;
    margin-bottom: 12px;
}
.lp-step h3 { font-size: 17px; margin-bottom: 6px; }
.lp-step p { margin: 0; font-size: 14px; color: #555; }

/* ---------- FAQ ---------- */
.lp-faq { max-width: 820px; margin: 0 auto; }
.lp-faq details {
    border: 1px solid #e6e9ed;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 12px;
    overflow: hidden;
}
.lp-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 46px 18px 20px;
    font-size: 17px;
    color: #3a3d43;
    font-family: 'caviar_dreams',sans-serif;
    position: relative;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary:after {
    content: '+';
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    font-size: 24px; color: #2976b3; line-height: 1;
}
.lp-faq details[open] summary:after { content: '–'; }
.lp-faq .lp-faq-body { padding: 0 20px 18px; color: #555; font-size: 15px; }
.lp-faq .lp-faq-body p { margin: 0 0 10px; }

/* ---------- ФИНАЛЬНЫЙ CTA + ФОРМА ---------- */
.lp-final {
    background: linear-gradient(135deg,#1e6dab 0%, #17578a 100%);
    color: #fff;
}
.lp-final .lp-inner {
    max-width: 720px; margin: 0 auto;
    padding: 48px 15px;
    text-align: center;
}
.lp-final h2 { color: #fff; font-size: 28px; margin-bottom: 10px; }
.lp-final p { color: #dceaf6; font-size: 17px; margin: 0 auto 26px; max-width: 560px; }
.lp-final .lp-contacts {
    margin: 0 0 24px;
    font-size: 20px;
}
.lp-final .lp-contacts a { color: #fff; text-decoration: none; font-family: 'caviar_dreams',sans-serif; }
.lp-final .lp-contacts span { opacity: .7; margin: 0 10px; }

/* форма — на светлой карточке поверх синего */
.lp-form-card {
    background: #fff;
    border-radius: 10px;
    padding: 26px 24px 10px;
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.lp-form-card h3 { text-align: center; font-size: 20px; margin-bottom: 16px; }
.lp .wholesale-form ul { list-style: none; margin: 0; padding: 0; }
.lp .wholesale-form ul li { margin-bottom: 12px; }
.lp .wholesale-form input.field {
    display: block; width: 100%;
    height: 46px; line-height: 46px;
    padding: 0 14px;
    border: 1px solid #cfd6dd;
    border-radius: 6px;
    font-size: 15px;
    color: #222;
    background: #fff;
}
.lp .wholesale-form input.field:focus { border-color: #2976b3; outline: none; }
.lp .wholesale-form .cart-submit {
    float: none; width: 100%;
    background: #2976b3; color: #fff;
    border: 1px solid #2976b3; border-radius: 6px;
    font-size: 16px; padding: 15px 20px; margin: 4px 0 12px;
}
.lp .wholesale-form .cart-submit:hover { background: #17578a; border-color: #17578a; }
.lp-form-note { text-align: center; font-size: 13px; color: #99a; margin: 0 0 8px; }
.lp-final .lp-form-note { color: #bcd4e8; }

/* мессенджеры-строка под формой */
.lp-mess {
    display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
    margin-top: 18px;
}
.lp-mess a {
    display: inline-flex; align-items: center; gap: 7px;
    text-decoration: none; font-size: 15px; font-weight: 600;
    padding: 11px 18px; border-radius: 6px; color: #fff;
}
.lp-mess .tg { background: #2aabee; }
.lp-mess .wa { background: #25d366; }
.lp-mess .vk { background: #07f; }
.lp-mess a:hover { opacity: .9; }

/* ---------- ВНУТРЕННИЕ ССЫЛКИ ---------- */
.lp-links { padding: 40px 0; border-top: 1px solid #eef1f4; }
.lp-links .lp-inner { max-width: 1000px; margin: 0 auto; }
.lp-links h2 { font-size: 22px; text-align: center; margin-bottom: 20px; }
.lp-links ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.lp-links a {
    display: inline-block; text-decoration: none;
    color: #2976b3; border: 1px solid #cfe0ef;
    background: #f4f9fd; border-radius: 20px;
    padding: 9px 18px; font-size: 15px;
    transition: all .15s;
}
.lp-links a:hover { background: #2976b3; color: #fff; border-color: #2976b3; }

/* ---------- Адаптив ---------- */
@media (max-width: 720px) {
    .lp-hero h1 { font-size: 26px; }
    .lp-hero .lp-inner { padding: 34px 15px 30px; }
    .lp-hero p.lp-lead { font-size: 16px; }
    .lp-h2, .lp-final h2 { font-size: 23px; }
    .lp-section { padding: 34px 0; }
    .lp-btn { padding: 14px 22px; width: 100%; }
    .lp-cta-row { flex-direction: column; align-items: stretch; }
    .lp-strip .num { font-size: 25px; }
}
