:root {
    --bg-main: #080312;
    --bg-page: #020617;
    --card: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-soft: #cbd5e1;
    --cyan: #22d3ee;
    --pink: #ec4899;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg-main);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

.page-wrap { padding: 24px 0 28px; }

.print-bar {
    width: 210mm;
    margin: 0 auto 10px;
    display: flex;
    justify-content: flex-end;
}

.print-btn {
    border: 1px solid rgba(34, 211, 238, 0.5);
    background: rgba(34, 211, 238, 0.1);
    color: #67e8f9;
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 14px;
    cursor: pointer;
}

.print-btn:hover { background: rgba(34, 211, 238, 0.2); }

.a4-page {
    width: 210mm;
    height: 297mm;
    margin: 0 auto 10px;
    overflow: hidden;
    position: relative;
    background: var(--bg-page);
}

.print-break {
    page-break-after: always;
    break-after: page;
}

.page-inner {
    height: 100%;
    min-height: 0;
    padding: 18mm 14mm;
    display: flex;
    flex-direction: column;
}

.a4-page.print-break .page-inner { padding: 18mm 14mm 11mm; }

.hero {
    flex: 0 0 auto;
    height: 54%;
    max-height: 54%;
    border: 1px solid var(--border);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.32), rgba(2, 6, 23, 0.56));
    z-index: 1;
}

.hero-title {
    position: absolute;
    top: 62px;
    left: 24px;
    z-index: 2;
}

.page-logo-top {
    position: absolute;
    top: 5mm;
    left: 14mm;
    z-index: 3;
    width: 150px;
    opacity: 0.95;
}

.hero-title small {
    display: block;
    margin-top: 10px;
    letter-spacing: 0.26em;
    font-size: 11px;
    color: #67e8f9;
}

.hero-title h1 { margin: 8px 0 0; font-size: 46px; line-height: 1; }

.glass-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 12px;
}

.benefits {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 44%;
    padding: 16px;
    text-align: right;
    z-index: 2;
}

.kicker {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.kicker.cyan { color: var(--cyan); }
.kicker.pink { color: var(--pink); }

.benefits ul {
    margin: 12px 0 0;
    padding-left: 0;
    list-style-position: inside;
    color: #e2e8f0;
    line-height: 1.5;
    font-size: 14px;
}

.process {
    flex: 0 0 auto;
    min-height: 0;
    margin-top: 12px;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: visible;
}

.process > div:not(.divider) { flex: 0 0 auto; min-height: 0; }

.page-footer {
    flex-shrink: 0;
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: #94a3b8;
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-right a { color: #67e8f9; text-decoration: none; }

.divider { border-top: 1px solid var(--border); }

.steps-grid { margin-top: 10px; display: grid; gap: 10px; }
.steps-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.step-card {
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 12px;
    padding: 12px;
}

.install-photo {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center;
}

.step-no {
    margin: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    line-height: 1;
    letter-spacing: 0.02em;
}

.step-no.cyan { color: var(--cyan); font-size: 22px; }
.step-no.pink { color: var(--pink); font-size: 22px; }
.step-no-inline { margin-bottom: 8px; }

.step-media {
    position: relative;
    width: 100%;
    margin: 6px 0 10px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.step-no-overlay {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 1;
    padding: 4px 7px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.66);
    backdrop-filter: blur(2px);
}

.step-media-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 10px 10px 9px;
    font-size: 12px;
    line-height: 1.35;
    color: #f8fafc;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.72) 48%, rgba(2, 6, 23, 0.88));
    backdrop-filter: blur(1px);
}

.step-text { margin: 10px 0 0; color: #e2e8f0; font-size: 13px; line-height: 1.45; }

.page-two {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 8px;
    align-content: start;
    min-height: 0;
    flex: 1;
}

.page-inner.page-two { padding: 14mm 12mm 11mm; }
.page-two .card { padding: 10px 12px; }
.page-two .included-compare { margin-top: 8px; }
.page-two .inc-head div, .page-two .inc-row div { padding: 6px 8px; font-size: 12px; line-height: 1.3; }
.page-two .inc-head div { padding: 7px 8px; font-size: 11px; }
.page-two .inc-photo { height: 88px; }
.page-two .inc-photo-wrap { max-width: 124px; margin: 0 auto 6px; padding: 6px; }
.page-two .inc-photo-wrap.wide { max-width: 180px; margin-bottom: 6px; }
.page-two .inc-photo-wrap.wide .inc-photo { max-height: 68px; width: auto; max-width: 100%; height: auto; object-fit: contain; }
.page-two .camera-desc { margin: 0 0 8px; font-size: 12px; line-height: 1.35; }
.page-two .camera-spec-label { font-size: 10px; }
.page-two .camera-spec-value { font-size: 13px; margin-top: 3px; }
.page-two .camera-spec-note { font-size: 10px; margin-top: 4px; }
.page-two .camera-spec-item { padding: 0 10px; }
.page-two .stand-spec-grid { margin-top: 6px; gap: 6px; }
.page-two .stand-spec-label { font-size: 10px; }
.page-two .stand-spec-value { font-size: 13px; margin-top: 3px; }
.page-two .bottom-grid { gap: 6px; }
.page-two .order-grid { gap: 1rem; }
.page-two .order-col-h { margin: 0 0 6px; }
.page-two .order-line-block + .order-line-block { margin-top: 8px; }
.page-two .order-value { font-size: 13px; line-height: 1.35; }
.page-two .order-sub { font-size: 11px; line-height: 1.35; }
.page-two .order-license-note { margin-top: 6px; }
.page-two .page-footer { grid-row: 4; align-self: end; margin-top: 8px; padding-top: 6px; font-size: 10px; }

.top-grid { display: block; }
.top-grid > h2 { margin: 0 0 8px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); }

.card {
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 12px;
    padding: 14px;
}

.card h2 { margin: 0; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); }

.card ul { margin: 12px 0 0; padding: 0; list-style: none; }
.card li { margin: 0 0 8px; color: #f1f5f9; font-size: 14px; line-height: 1.4; }

.included li::before { content: "✓"; color: var(--cyan); margin-right: 8px; font-weight: 700; }

.optional {
    margin-top: 10px;
    border: 1px solid rgba(236, 72, 153, 0.35);
    background: rgba(236, 72, 153, 0.1);
    border-radius: 8px;
    padding: 8px 10px;
    color: #f9a8d4;
    font-size: 13px;
}

.included-compare {
    margin-top: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.inc-head, .inc-row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; }
.inc-head { background: rgba(147, 51, 234, 0.18); }
.inc-head div { padding: 9px 10px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #e9d5ff; border-right: 1px solid rgba(255, 255, 255, 0.12); }
.inc-head div:last-child { border-right: 0; }
.inc-head div:not(:first-child) { text-align: center; }
.inc-row { border-top: 1px solid var(--border); }
.inc-row div { padding: 9px 10px; font-size: 13px; line-height: 1.35; color: #e2e8f0; border-right: 1px solid var(--border); }
.inc-row div:first-child { color: var(--text-soft); }
.inc-row div:last-child { border-right: 0; }
.inc-span-2 { grid-column: span 2; }

.inc-photo { display: block; width: 100%; height: 120px; margin: 0; object-fit: contain; }
.inc-photo-wrap {
    width: 100%; max-width: 150px; margin: 0 auto 10px; padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 10px; background: #ffffff;
    box-shadow: 0 2px 10px rgba(2, 6, 23, 0.25);
}
.inc-photo-wrap.wide { max-width: 240px; }
.inc-photo-wrap.wide .inc-photo { height: auto; aspect-ratio: 16 / 9; }

.camera-desc { margin: 0 0 12px; }
.camera-spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin-top: 4px; }
.camera-spec-item { padding: 0 14px; border-right: 1px solid rgba(255, 255, 255, 0.12); text-align: center; }
.camera-spec-item:first-child { padding-left: 0; }
.camera-spec-item:last-child { padding-right: 0; border-right: 0; }
.camera-spec-label { margin: 0; font-size: 11px; color: #9ca3af; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.35; }
.camera-spec-value { margin: 4px 0 0; font-size: 14px; font-weight: 600; color: #22d3ee; font-variant-numeric: tabular-nums; line-height: 1.35; }
.camera-spec-note { margin: 6px 0 0; font-size: 11px; font-weight: 400; color: #9ca3af; line-height: 1.35; letter-spacing: normal; text-transform: none; }

.stand-spec-grid { margin-top: 8px; display: grid; grid-template-columns: 1fr; gap: 8px; }
.stand-spec-item { text-align: center; }
.stand-spec-label { margin: 0; font-size: 11px; color: #9ca3af; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.35; }
.stand-spec-value { margin: 4px 0 0; font-size: 14px; font-weight: 600; color: #22d3ee; font-variant-numeric: tabular-nums; line-height: 1.35; }

.bottom-grid { align-self: end; display: flex; flex-direction: column; gap: 10px; }
.bottom-grid > h2 { margin: 0; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); }

.price { border-color: rgba(34, 211, 238, 0.4); background: rgba(34, 211, 238, 0.1); }
.box-label { margin: 0; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #67e8f9; }

.order-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; align-items: start; }
.order-col-h { margin: 0 0 8px; }
.order-value { margin: 0; font-family: Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 500; line-height: 1.4; color: #ffffff; }
.order-value + .order-sub, .order-value + .order-muted { margin-top: 4px; }
.order-line-block + .order-line-block { margin-top: 10px; }
.order-value-pink { color: var(--pink); }
.order-muted { margin: 0; font-family: Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 1.45; color: #9ca3af; }
.order-sub { margin: 0; font-family: Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 1.4; color: #9ca3af; }

.pink { color: var(--pink); }
.muted { color: var(--text-soft); font-size: 12px; margin-top: 4px; }
.tiny-list { margin: 10px 0 0; padding-left: 16px; color: #e2e8f0; font-size: 14px; }
.tiny-list li { margin-bottom: 4px; }

@media print {
    .page-wrap { padding: 0; background: var(--bg-page); }
    .print-hide { display: none !important; }
    .a4-page { margin: 0; }
}

@page {
    size: A4;
    margin: 0;
}
