/* =====================================================================
   PRINTINGLIFE — BLOKNOTY v2 (альтернативный лендинг)
   Hero (assembly diagram) → Process → Included → Estimate calc
   → Cases → Specs → FAQ → Closing CTA + Modal.
   Токены — из printinglife-header.css. Шапка/футер — partials.
   ===================================================================== */

/* === BREADCRUMB === */
.pl-crumb { padding: 1rem var(--pl-page-px); font-size: 0.8125rem; color: var(--pl-muted); background: var(--pl-bg-soft); border-bottom: 1px solid var(--pl-line); }
.pl-crumb a { color: var(--pl-ink-soft); text-decoration: none; }
.pl-crumb a:hover { color: var(--pl-brand); }
.pl-crumb span { margin: 0 0.4rem; opacity: 0.5; }

/* ============ HERO — service framing ============ */
.svc-hero {
    padding: 3rem var(--pl-page-px) 4rem;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid var(--pl-line);
}
@media (max-width: 980px) { .svc-hero { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 2rem; } }

.svc-hero__eyebrow {
    display: inline-flex; align-items: center;
    padding: 0.4rem 0.9rem;
    background: var(--pl-bg-tint);
    color: var(--pl-brand);
    border-radius: 999px;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}
.svc-hero h1 {
    margin: 0 0 1.25rem;
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    font-weight: 800; letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--pl-ink);
}
.svc-hero h1 em {
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    color: var(--pl-brand);
}
.svc-hero__lede {
    margin: 0 0 1.75rem;
    font-size: 0.9375rem; line-height: 1.6;
    color: var(--pl-ink-soft);
    max-width: 56ch;
}
/* Чипсы под кнопками — формат как на других сервисных страницах */
.svc-hero__chips {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    color: var(--pl-ink-soft);
}
.svc-hero__chips li {
    display: inline-flex; align-items: center; gap: 0.45rem;
}
.svc-hero__chips svg { width: 16px; height: 16px; color: var(--pl-brand); flex-shrink: 0; }
.svc-hero__cta {
    display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center;
}
.svc-btn-primary {
    padding: 1rem 1.6rem;
    background: var(--pl-brand); color: #fff;
    border: 0; border-radius: 10px;
    font-weight: 700; font-size: 0.9375rem;
    cursor: pointer; font-family: inherit;
    box-shadow: 0 4px 14px rgba(254,46,70,0.28);
    transition: all 200ms ease;
    display: inline-flex; align-items: center; gap: 0.55rem;
    text-decoration: none;
}
.svc-btn-primary:hover { background: var(--pl-brand-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(254,46,70,0.34); }
.svc-btn-secondary {
    padding: 1rem 1.4rem;
    background: transparent; color: var(--pl-ink);
    border: 1.5px solid var(--pl-line);
    border-radius: 10px;
    font-weight: 600; font-size: 0.9375rem;
    cursor: pointer; font-family: inherit;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: all 160ms ease;
}
.svc-btn-secondary:hover { border-color: var(--pl-ink); }
.svc-hero__guarantee {
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    color: var(--pl-muted);
    display: inline-flex; align-items: center; gap: 0.4rem;
}
.svc-hero__guarantee svg { color: var(--pl-brand); flex-shrink: 0; }

/* === HERO ART — assembly diagram === */
.svc-hero__art {
    position: relative;
    height: 540px;
    display: flex; align-items: center; justify-content: center;
}
.assembly {
    position: relative;
    width: 100%; max-width: 480px;
    aspect-ratio: 1;
    perspective: 1400px;
}
.assembly__layer {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    transform-style: preserve-3d;
}
.assembly__piece {
    position: absolute;
    background: var(--ap-bg, #41496D);
    box-shadow: 0 12px 28px -8px rgba(15,23,42,0.25);
    transition: transform 600ms cubic-bezier(0.2,0.9,0.3,1);
}
/* Cover back */
.assembly__piece--back {
    width: 240px; height: 320px;
    background: #41496D;
    border-radius: 4px 14px 14px 4px;
    transform: rotate(-10deg) translate(-100px, -20px);
}
.assembly__piece--back::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 14px;
    background: rgba(0,0,0,0.25); border-radius: 4px 0 0 4px;
}
/* Block — paper */
.assembly__piece--block {
    width: 200px; height: 280px;
    background: #fefcf6;
    border-radius: 2px;
    transform: rotate(-2deg) translate(20px, 30px);
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.05),
        4px 0 0 #f4f0e2,
        8px 0 0 #ebe6d6,
        12px 0 0 #e2dcc8,
        0 24px 50px -12px rgba(15,23,42,0.3);
    overflow: hidden;
}
.assembly__piece--block::before {
    /* rule lines */
    content: "";
    position: absolute;
    top: 30px; left: 20px; right: 20px; bottom: 20px;
    background-image: repeating-linear-gradient(0deg,
        var(--pl-line) 0 1px,
        transparent 1px 18px);
}
.assembly__piece--block::after {
    content: "";
    position: absolute;
    top: 12px; left: 20px;
    width: 60px; height: 6px;
    background: var(--pl-brand);
    border-radius: 2px;
}
/* Cover front */
.assembly__piece--front {
    width: 240px; height: 320px;
    background: linear-gradient(135deg, #fe2e46 0%, #e61e36 100%);
    border-radius: 4px 14px 14px 4px;
    transform: rotate(8deg) translate(120px, 60px);
}
.assembly__piece--front::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 14px;
    background: rgba(0,0,0,0.25); border-radius: 4px 0 0 4px;
}
.assembly__piece--front::after {
    /* embossed logo */
    content: "P.";
    position: absolute; bottom: 22px; right: 24px;
    font-size: 3rem; font-weight: 800;
    letter-spacing: -0.04em;
    color: rgba(255,255,255,0.25);
    line-height: 1;
}
/* Spring rings */
.assembly__rings {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    width: 12px; height: 280px;
    margin-top: 30px; margin-left: -90px;
    display: flex; flex-direction: column;
    justify-content: space-around;
    z-index: 4;
}
.assembly__ring {
    width: 24px; height: 6px;
    border: 2px solid #888;
    border-radius: 999px;
    background: linear-gradient(180deg, #d8d8d8 0%, #888 100%);
    margin-left: -6px;
}
/* Connector lines */
.assembly__label {
    position: absolute;
    background: #fff;
    border: 1.5px solid var(--pl-line);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem; font-weight: 700;
    color: var(--pl-ink);
    z-index: 10;
    box-shadow: 0 4px 14px rgba(15,23,42,0.08);
    white-space: nowrap;
    display: inline-flex; align-items: center; gap: 0.4rem;
}
.assembly__label::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pl-brand);
}
.assembly__label--cover { top: 6%; left: -2%; }
.assembly__label--block { top: 38%; right: -8%; }
.assembly__label--spring { bottom: 14%; left: 8%; }
.assembly__label--print { bottom: 0%; right: 6%; }

/* connector dotted lines */
.assembly__dot {
    position: absolute;
    width: 1px; height: 50px;
    background: repeating-linear-gradient(180deg, var(--pl-ink-soft) 0 4px, transparent 4px 8px);
    z-index: 9;
}
.assembly__dot--cover { top: 12%; left: 10%; transform: rotate(35deg); height: 80px; }
.assembly__dot--block { top: 42%; right: 5%; transform: rotate(-30deg); height: 70px; }

@media (max-width: 980px) { .svc-hero__art { height: 420px; } .assembly { max-width: 380px; } }

/* ============ PROCESS — wide visual timeline ============ */
.process {
    padding: 5rem var(--pl-page-px);
    background: var(--pl-bg-soft);
    border-bottom: 1px solid var(--pl-line);
}
.process__head {
    margin-bottom: 3rem;
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 2rem; flex-wrap: wrap;
}
.process__head h2 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.65rem, 2.6vw, 2.1rem);
    font-weight: 800; color: var(--pl-ink);
    letter-spacing: -0.02em;
    max-width: 18ch;
}
.process__head h2 em {
    font-family: Georgia, serif; font-style: italic;
    color: var(--pl-brand);
}
.process__head p {
    margin: 0;
    color: var(--pl-ink-soft); font-size: 1rem; line-height: 1.55;
    max-width: 38ch;
}
.process__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    counter-reset: step;
}
@media (max-width: 1100px) { .process__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .process__grid { grid-template-columns: repeat(2, 1fr); } }

.process-step {
    counter-increment: step;
    padding: 1.5rem 1.25rem;
    border-right: 1px solid var(--pl-line);
    background: #fff;
    position: relative;
    transition: all 240ms ease;
    cursor: default;
}
.process-step:first-child { border-top-left-radius: 14px; border-bottom-left-radius: 14px; }
.process-step:last-child { border-right: 0; border-top-right-radius: 14px; border-bottom-right-radius: 14px; }
.process-step:hover {
    background: var(--pl-bg-tint);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -10px rgba(15,23,42,0.1);
    z-index: 2;
}
@media (max-width: 1100px) {
    .process-step { border-right: 0; border-bottom: 1px solid var(--pl-line); border-radius: 0 !important; }
    .process-step:nth-child(3n) { border-right: 0; }
    .process-step:nth-child(-n+3) { border-top: 1px solid var(--pl-line); }
}
.process-step::before {
    content: "0" counter(step);
    display: block;
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--pl-brand);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}
.process-step__icon {
    width: 44px; height: 44px;
    background: var(--pl-bg-soft);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--pl-ink);
    margin-bottom: 0.85rem;
}
.process-step__icon svg { width: 22px; height: 22px; }
.process-step h4 {
    margin: 0 0 0.4rem;
    font-size: 0.95rem; font-weight: 700;
    color: var(--pl-ink);
    letter-spacing: -0.01em;
}
.process-step p {
    margin: 0; font-size: 0.8125rem; line-height: 1.5;
    color: var(--pl-ink-soft);
}
.process-step time {
    display: inline-block;
    margin-top: 0.85rem;
    font-size: 0.7rem; font-weight: 700;
    color: var(--pl-muted);
    text-transform: uppercase; letter-spacing: 0.08em;
}

/* ============ INCLUDED SERVICES — 2-col with check rail ============ */
.included {
    padding: 5rem var(--pl-page-px);
    background: #fff;
}
.included__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 980px) { .included__layout { grid-template-columns: 1fr; gap: 2rem; } }

.included__head h3 {
    margin: 0 0 0.4rem;
    font-size: 0.75rem; font-weight: 700;
    color: var(--pl-brand);
    text-transform: uppercase; letter-spacing: 0.1em;
}
.included__head h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.65rem, 2.6vw, 2.1rem);
    font-weight: 800; color: var(--pl-ink);
    letter-spacing: -0.02em;
}
.included__head h2 em {
    font-family: Georgia, serif; font-style: italic;
    color: var(--pl-brand);
}
.included__head p {
    margin: 0 0 1.25rem;
    color: var(--pl-ink-soft); font-size: 1rem; line-height: 1.55;
}
.included__head .quote {
    border-left: 3px solid var(--pl-brand);
    padding: 0.5rem 0 0.5rem 1.1rem;
    margin: 1.5rem 0 0;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--pl-ink);
    line-height: 1.5;
}
.included__head .quote-author {
    display: block;
    margin-top: 0.65rem;
    font-family: inherit;
    font-style: normal;
    font-size: 0.8125rem;
    color: var(--pl-muted);
    font-weight: 600;
}

.included__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
@media (max-width: 600px) { .included__list { grid-template-columns: 1fr; } }
.included__item {
    padding: 1.1rem 0;
    border-top: 1px solid var(--pl-line);
    display: flex; gap: 0.85rem; align-items: flex-start;
}
.included__list > .included__item:first-child,
.included__list > .included__item:nth-child(2) { border-top: 0; }
@media (max-width: 600px) {
    .included__list > .included__item:nth-child(2) { border-top: 1px solid var(--pl-line); }
}
.included__check {
    flex-shrink: 0;
    width: 24px; height: 24px;
    background: var(--pl-bg-tint);
    color: var(--pl-brand);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    margin-top: 1px;
}
.included__check svg { width: 14px; height: 14px; }
.included__item h4 {
    margin: 0 0 0.2rem;
    font-size: 0.9375rem; font-weight: 700;
    color: var(--pl-ink);
}
.included__item p {
    margin: 0; font-size: 0.8125rem; line-height: 1.45;
    color: var(--pl-ink-soft);
}

/* ============ CONFIGURATOR (estimate calculator) ============ */
.estimate {
    padding: 5rem var(--pl-page-px);
    background: var(--pl-ink);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.estimate__head {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
}
.estimate__head h3 {
    margin: 0 0 0.5rem;
    font-size: 0.75rem; font-weight: 700;
    color: var(--pl-brand);
    text-transform: uppercase; letter-spacing: 0.1em;
}
.estimate__head h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.65rem, 2.6vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.estimate__head h2 em {
    font-family: Georgia, serif; font-style: italic;
    color: var(--pl-brand); font-weight: 700;
}
.estimate__head p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 1rem; line-height: 1.55;
}

.estimate__panel {
    background: #fff;
    color: var(--pl-text);
    border-radius: 18px;
    padding: 2.25rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 24px 60px -10px rgba(0,0,0,0.4);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
}
@media (max-width: 900px) { .estimate__panel { grid-template-columns: 1fr; padding: 1.5rem; } }

.es-form { display: flex; flex-direction: column; gap: 1.5rem; }
.es-section__label {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 0.65rem;
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--pl-ink);
}
.es-section__value { font-weight: 600; color: var(--pl-muted); text-transform: none; letter-spacing: 0; font-size: 0.8125rem; }
.es-options { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.es-chip {
    padding: 0.55rem 0.85rem;
    border: 1.5px solid var(--pl-line);
    border-radius: 8px;
    background: #fff;
    font-size: 0.8125rem; font-weight: 600;
    color: var(--pl-ink);
    cursor: pointer; font-family: inherit;
    transition: all 160ms ease;
}
.es-chip:hover { border-color: var(--pl-ink-soft); }
.es-chip.is-active { border-color: var(--pl-ink); background: var(--pl-ink); color: #fff; }

/* qty */
.es-qty { display: inline-flex; align-items: center; border: 1.5px solid var(--pl-line); border-radius: 10px; overflow: hidden; background: #fff; }
.es-qty button { width: 40px; height: 42px; border: 0; background: transparent; font-size: 1.1rem; font-weight: 600; color: var(--pl-ink); cursor: pointer; font-family: inherit; }
.es-qty button:hover { background: var(--pl-bg-soft); }
.es-qty input { width: 80px; height: 42px; border: 0; outline: none; text-align: center; font-size: 0.95rem; font-weight: 700; color: var(--pl-ink); background: transparent; font-family: inherit; }

/* Side: live result */
.es-result {
    background: linear-gradient(180deg, var(--pl-bg-soft) 0%, #fff 100%);
    border: 1px solid var(--pl-line);
    border-radius: 14px;
    padding: 1.75rem;
    align-self: start;
    display: flex; flex-direction: column;
    height: 100%;
}
.es-result__top {
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed var(--pl-line);
    margin-bottom: 1.25rem;
}
.es-result__title {
    font-size: 0.8125rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--pl-muted);
    margin-bottom: 0.5rem;
}
.es-result__big {
    font-size: 2.5rem; font-weight: 800;
    color: var(--pl-ink);
    letter-spacing: -0.025em;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.es-result__big em { font-style: normal; color: var(--pl-brand); }
.es-result__sub { font-size: 0.8125rem; color: var(--pl-muted); }

.es-result__lines {
    flex: 1;
    display: flex; flex-direction: column; gap: 0.55rem;
    margin-bottom: 1.25rem;
}
.es-result__line {
    display: flex; justify-content: space-between;
    font-size: 0.8125rem;
}
.es-result__line span:first-child { color: var(--pl-muted); }
.es-result__line span:last-child { color: var(--pl-ink); font-weight: 700; }

.es-result__lead {
    background: var(--pl-bg-tint);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.7rem;
    font-size: 0.8125rem;
    color: var(--pl-ink);
}
.es-result__lead svg { color: var(--pl-brand); flex-shrink: 0; }
.es-result__lead b { font-weight: 700; }

.es-cta {
    padding: 1rem 1.4rem;
    background: var(--pl-brand); color: #fff;
    border: 0; border-radius: 10px;
    font-weight: 700; font-size: 0.9375rem;
    cursor: pointer; font-family: inherit;
    box-shadow: 0 4px 14px rgba(254,46,70,0.28);
    transition: all 200ms ease;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.es-cta:hover { background: var(--pl-brand-dark); transform: translateY(-1px); }

.es-result__note {
    margin-top: 0.85rem;
    font-size: 0.7rem;
    color: var(--pl-muted);
    text-align: center;
    line-height: 1.4;
}

/* ============ CASES ============ */
.cases {
    padding: 5rem var(--pl-page-px);
    background: #fff;
}
.cases__head {
    margin-bottom: 3rem;
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 2rem; flex-wrap: wrap;
}
.cases__head h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.65rem, 2.6vw, 2.1rem);
    font-weight: 800; color: var(--pl-ink);
    letter-spacing: -0.02em;
}
.cases__head p {
    margin: 0; max-width: 36ch;
    color: var(--pl-ink-soft); font-size: 0.9375rem;
}
.cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 900px) { .cases__grid { grid-template-columns: 1fr; } }
.case {
    border: 1px solid var(--pl-line);
    border-radius: 14px;
    overflow: hidden;
    transition: all 240ms ease;
    background: #fff;
    cursor: pointer;
    display: flex; flex-direction: column;
}
.case:hover {
    transform: translateY(-3px);
    border-color: var(--pl-ink);
    box-shadow: 0 16px 36px -12px rgba(15,23,42,0.15);
}
.case__visual {
    aspect-ratio: 4/3;
    background: var(--c-bg, var(--pl-bg-soft));
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.case__visual::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
    pointer-events: none;
}
.case__nb {
    width: 50%; aspect-ratio: 3/4;
    background: var(--c-cover, #41496D);
    border-radius: 4px 10px 10px 4px;
    transform: rotate(-7deg);
    box-shadow: 0 18px 40px -10px rgba(15,23,42,0.4);
    position: relative;
    transition: transform 280ms ease;
}
.case:hover .case__nb { transform: rotate(-3deg) translateY(-3px); }
.case__nb::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 12px;
    background: rgba(0,0,0,0.2); border-radius: 4px 0 0 4px;
}
.case__nb::after {
    content: var(--c-mark, "P.");
    position: absolute;
    bottom: 14%; right: 12%;
    font-size: 1.25rem; font-weight: 800;
    color: rgba(255,255,255,0.3);
    letter-spacing: -0.04em;
    font-family: Georgia, serif;
    font-style: italic;
}
.case__body { padding: 1.25rem 1.4rem 1.5rem; flex: 1; }
.case__client {
    font-size: 0.7rem; font-weight: 700;
    color: var(--pl-brand);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}
.case__title {
    margin: 0 0 0.65rem;
    font-size: 1.0625rem; font-weight: 700;
    color: var(--pl-ink);
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.case__meta {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--pl-ink-soft);
    line-height: 1.45;
}
.case__stats {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--pl-line);
    display: flex; gap: 1rem;
    font-size: 0.75rem;
    color: var(--pl-muted);
}
.case__stats b { color: var(--pl-ink); font-weight: 700; }

/* ============ SPECS — small reference ============ */
.specs {
    padding: 5rem var(--pl-page-px);
    background: var(--pl-bg-soft);
    border-top: 1px solid var(--pl-line);
}
.specs__layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 980px) { .specs__layout { grid-template-columns: 1fr; gap: 2rem; } }
.specs__head h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 2.4vw, 1.85rem);
    font-weight: 800; color: var(--pl-ink);
    letter-spacing: -0.02em;
}
.specs__head h2 em { font-family: Georgia, serif; font-style: italic; color: var(--pl-brand); }
.specs__head p { margin: 0 0 1rem; color: var(--pl-ink-soft); font-size: 1rem; line-height: 1.55; }

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--pl-line);
    border-radius: 14px;
    overflow: hidden;
}
.specs-table tr { border-bottom: 1px solid var(--pl-line); }
.specs-table tr:last-child { border-bottom: 0; }
.specs-table td {
    padding: 0.95rem 1.4rem;
    font-size: 0.9375rem;
}
.specs-table td:first-child {
    color: var(--pl-muted); width: 40%; font-weight: 500;
    background: var(--pl-bg-soft);
}
.specs-table td:last-child {
    color: var(--pl-ink); font-weight: 600;
}

/* ============ FAQ ============ */
.faq-section {
    padding: 5rem var(--pl-page-px);
    background: #fff;
    border-top: 1px solid var(--pl-line);
}
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 980px) { .faq-layout { grid-template-columns: 1fr; gap: 2rem; } }
.faq-head h2 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.5rem, 2.4vw, 1.85rem);
    font-weight: 800; color: var(--pl-ink);
    letter-spacing: -0.02em;
}
.faq-head h2 em { font-family: Georgia, serif; font-style: italic; color: var(--pl-brand); }
.faq-head p { margin: 0 0 1.25rem; color: var(--pl-ink-soft); font-size: 0.95rem; line-height: 1.55; }
.faq-help {
    background: var(--pl-bg-soft);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}
.faq-help b { display: block; color: var(--pl-ink); font-weight: 700; margin-bottom: 0.3rem; font-size: 0.9375rem; }
.faq-help a { color: var(--pl-brand); font-weight: 700; text-decoration: none; font-size: 0.9375rem; }

.faq-list { }
.faq-item { border-bottom: 1px solid var(--pl-line); }
.faq-item:first-child { border-top: 1px solid var(--pl-line); }
.faq-q {
    width: 100%;
    padding: 1.2rem 0;
    background: transparent; border: 0;
    text-align: left; font-family: inherit;
    font-size: 1rem; font-weight: 600;
    color: var(--pl-ink); cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
}
.faq-q::after {
    content: "+"; font-size: 1.5rem; color: var(--pl-brand);
    line-height: 1; transition: transform 200ms ease;
    flex-shrink: 0;
}
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 280ms ease, padding 280ms ease;
}
.faq-item.is-open .faq-a {
    max-height: 400px;
    padding: 0 0 1.2rem;
}
.faq-a p { margin: 0; font-size: 0.9375rem; line-height: 1.55; color: var(--pl-ink-soft); max-width: 70ch; }

/* ============ CLOSING CTA ============ */
.closing {
    padding: 5rem var(--pl-page-px);
    background: var(--pl-ink);
    color: #fff;
    text-align: center;
}
.closing__inner { max-width: 640px; margin: 0 auto; }
.closing h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 800; letter-spacing: -0.025em;
    line-height: 1.1;
}
.closing h2 em { font-family: Georgia, serif; font-style: italic; color: var(--pl-brand); font-weight: 700; }
.closing p { margin: 0 0 2rem; font-size: 1.0625rem; line-height: 1.55; color: rgba(255,255,255,0.75); }
.closing__cta { display: inline-flex; flex-direction: column; align-items: center; gap: 0.65rem; }
.closing__phone {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
}
.closing__phone a { color: var(--pl-brand); text-decoration: none; font-weight: 700; }

/* === MODAL === */
.modal { position: fixed; inset: 0; background: rgba(15,23,42,0.6); backdrop-filter: blur(4px); z-index: 250; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.modal.is-open { display: flex; }
.modal__panel { background: #fff; border-radius: 18px; width: min(560px, 100%); max-height: 90vh; overflow-y: auto; padding: 2.5rem; position: relative; box-shadow: 0 24px 60px -10px rgba(15,23,42,0.4); }
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; background: var(--pl-bg-soft); color: var(--pl-ink); border: 0; border-radius: 50%; cursor: pointer; font-family: inherit; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.modal__title { margin: 0 0 0.4rem; font-size: 1.5rem; font-weight: 800; color: var(--pl-ink); letter-spacing: -0.015em; }
.modal__sub { margin: 0 0 1.5rem; font-size: 0.9375rem; line-height: 1.5; color: var(--pl-ink-soft); }
.modal__summary { background: var(--pl-bg-soft); border-radius: 12px; padding: 1rem 1.15rem; margin-bottom: 1.25rem; font-size: 0.875rem; line-height: 1.55; color: var(--pl-ink); }
.modal__summary b { color: var(--pl-ink); font-weight: 700; }
.modal__summary .total { margin-top: 0.55rem; padding-top: 0.55rem; border-top: 1px solid var(--pl-line); display: flex; justify-content: space-between; font-weight: 700; }
.modal__summary .total-value { color: var(--pl-brand); font-size: 1.125rem; }
.modal__form { display: flex; flex-direction: column; gap: 0.85rem; }
.modal__form input, .modal__form textarea { padding: 0.85rem 1rem; border: 1.5px solid var(--pl-line); border-radius: 10px; font-size: 0.95rem; font-family: inherit; color: var(--pl-text); width: 100%; }
.modal__form textarea { resize: vertical; min-height: 80px; }
.modal__form input:focus, .modal__form textarea:focus { outline: none; border-color: var(--pl-ink); box-shadow: 0 0 0 3px rgba(65,73,109,0.08); }
.modal__submit { padding: 0.95rem 1.5rem; background: var(--pl-brand); color: #fff; border: 0; border-radius: 10px; font-weight: 700; font-size: 0.9375rem; cursor: pointer; font-family: inherit; margin-top: 0.5rem; }
.modal__success { text-align: center; padding: 1rem 0; }
.modal__success-icon { width: 72px; height: 72px; border-radius: 50%; background: #16a34a; color: #fff; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; }

