/* СКЛАД 47 — фулфилмент. Плотная «производственная» вёрстка: две колонки,
   форма липнет справа, много таблиц и чеклистов. Акцент — тёмно-бирюзовый. */

:root {
    --teal: #0f766e;
    --teal-dark: #0b5751;
    --ink: #101513;
    --body: #495251;
    --line: #dfe4e3;
    --paper: #ffffff;
    --grey: #f4f6f6;
    --wrap: 1240px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--body);
    font: 15.5px/1.6 "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.2; letter-spacing: -.01em; }
p { margin: 0; }
a { color: var(--teal); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ── Шапка ── */
.hdr { background: var(--ink); color: #fff; }
.hdrInner { display: flex; align-items: center; gap: 24px; height: 62px; }
.brand { color: #fff; text-decoration: none; font-weight: 700; letter-spacing: .06em; display: flex; align-items: center; gap: 10px; font-size: 15px; }
.brand svg { color: #3ecfc0; }
.hdrMeta { color: rgba(255,255,255,.55); font-size: 13px; display: flex; gap: 10px; }
.sep { opacity: .5; }
.hdrCta { margin-left: auto; background: var(--teal); color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; padding: 9px 18px; border-radius: 3px; }
.hdrCta:hover { background: #12938a; }

/* ── Две колонки ── */
.split {
    max-width: var(--wrap); margin: 0 auto; padding: 0 28px;
    display: grid; grid-template-columns: 1fr 372px; gap: 56px; align-items: start;
}
.content { padding: 48px 0 64px; min-width: 0; }

.intro h1 { font-size: 40px; font-weight: 700; margin-bottom: 18px; }
.introLead { font-size: 17px; max-width: 640px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.pills span { background: var(--grey); border: 1px solid var(--line); border-radius: 3px; padding: 6px 12px; font-size: 13px; }

.sec { margin-top: 56px; }
.sec h2 { font-size: 25px; margin-bottom: 10px; padding-bottom: 12px; border-bottom: 2px solid var(--ink); }
.secSub { margin: 14px 0 18px; }

.checks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 2px; }
.checks li { display: grid; grid-template-columns: 230px 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); align-items: start; }
.checks b { color: var(--ink); font-size: 15.5px; position: relative; padding-left: 24px; }
.checks b::before {
    content: ""; position: absolute; left: 0; top: 6px; width: 13px; height: 7px;
    border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg);
}
.checks span { font-size: 14.5px; }

.tableWrap { overflow-x: auto; }
.price { width: 100%; border-collapse: collapse; min-width: 560px; }
.price th, .price td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.price th { background: var(--grey); color: var(--ink); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; }
.price td:last-child { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); white-space: nowrap; }
.price tbody tr:hover { background: #f8fbfb; }
.fine { font-size: 13.5px; color: #7b8583; margin-top: 14px; }

.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.flow > div { background: var(--grey); border-left: 3px solid var(--teal); padding: 16px 18px; }
.flow b { display: block; color: var(--teal); font-size: 20px; margin-bottom: 6px; }
.flow p { font-size: 14px; }

.quotes blockquote { margin: 22px 0 0; padding: 20px 24px; background: var(--grey); border-radius: 4px; }
.quotes p { font-size: 15.5px; color: var(--ink); }
.quotes cite { display: block; margin-top: 10px; font-style: normal; font-size: 13px; color: #7b8583; }

/* ── Липкая форма ── */
.side { position: sticky; top: 24px; margin-top: 48px; }
.leadForm { background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--teal); border-radius: 4px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.side h2 { font-size: 21px; }
.sideSub { font-size: 14px; margin-top: -6px; }

.leadForm label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: #6d7877; }
.leadForm input[type=text], .leadForm textarea {
    font: inherit; font-size: 15px; color: var(--ink); background: var(--grey);
    border: 1px solid var(--line); border-radius: 3px; padding: 10px 12px; width: 100%;
}
.leadForm textarea { resize: vertical; }
.leadForm input:focus, .leadForm textarea:focus { outline: 2px solid var(--teal); outline-offset: -1px; border-color: transparent; }

.fileRow { flex-direction: row !important; align-items: center; gap: 10px !important; cursor: pointer; }
.fileBtn { border: 1px dashed var(--line); border-radius: 3px; padding: 9px 13px; font-size: 13px; color: var(--ink); }
.fileRow:hover .fileBtn { border-color: var(--teal); color: var(--teal); }
.fileName { font-size: 12px; color: #7b8583; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.consent { flex-direction: row !important; align-items: flex-start; gap: 9px !important; font-size: 12px; line-height: 1.45; }
.consent input { margin-top: 2px; flex: 0 0 auto; }
.trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.leadForm button {
    background: var(--teal); color: #fff; border: 0; border-radius: 3px;
    padding: 13px; font: inherit; font-weight: 700; cursor: pointer;
}
.leadForm button:hover { background: var(--teal-dark); }
.leadForm button:disabled { opacity: .6; cursor: default; }
.sideNote { font-size: 12px; color: #8b9493; text-align: center; }

.formNote { font-size: 13px; padding: 10px 12px; border-radius: 3px; }
.formNote[data-kind=ok] { background: #e6f6ef; color: #0b6b45; }
.formNote[data-kind=error] { background: #fdecec; color: #a8121c; }

/* ── Нижний блок ── */
.bottomCta { background: var(--ink); color: #fff; padding: 60px 0; margin-top: 32px; }
.bottomGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.bottomCta h2 { color: #fff; font-size: 27px; margin-bottom: 12px; }
.bottomCta > .wrap > div p { color: rgba(255,255,255,.65); }
.bottomForm { background: transparent; border: 0; border-top: 0; padding: 0; }
.bottomForm input[type=text], .bottomForm textarea { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: #fff; }
.bottomForm ::placeholder { color: rgba(255,255,255,.42); }
.bottomForm .consent { color: rgba(255,255,255,.6); }
.bottomForm .consent a { color: #6ee0d2; }
.bRow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.ftr { background: var(--ink); color: rgba(255,255,255,.45); padding: 20px 0; font-size: 13px; border-top: 1px solid rgba(255,255,255,.09); }
.ftrInner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ftr a { color: rgba(255,255,255,.65); }

@media (max-width: 1040px) {
    .split { grid-template-columns: 1fr; gap: 0; }
    .side { position: static; margin: 0 0 48px; }
    .content { padding-bottom: 32px; }
    .flow { grid-template-columns: 1fr 1fr; }
    .checks li { grid-template-columns: 1fr; gap: 6px; }
    .intro h1 { font-size: 28px; }
    .bottomGrid { grid-template-columns: 1fr; gap: 32px; }
    .hdrMeta { display: none; }
}
