:root {
    --ink: #102033;
    --ink-2: #34485c;
    --ink-3: #67798b;
    --blue: #235fd7;
    --cyan: #25bfd4;
    --green: #67bd45;
    --line: #c8d6e2;
    --line-soft: #e2ebf2;
    --fill: #f4f8fb;
    --fill-2: #eaf1f7;
    --paper: #ffffff;
    --content-max: 1180px;
    --page-gutter: max(clamp(24px, 6vw, 96px), calc((100vw - var(--content-max)) / 2));
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    background: var(--paper);
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

.page {
    width: 100%;
    max-width: none;
    margin: 0;
    background: var(--paper);
    box-shadow: none;
}

section {
    padding: 70px var(--page-gutter);
    border-bottom: 1px solid var(--line-soft);
}

h1,
h2,
h3 {
    font-family: Ubuntu, "Open Sans", Arial, sans-serif;
    letter-spacing: 0;
}

h1 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
}

h2 {
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
}

h3 {
    font-size: 16px;
    line-height: 1.25;
}

.answer {
    max-width: 74ch;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 17px;
    font-weight: 600;
}

.sub,
p.body {
    max-width: 74ch;
    color: var(--ink-2);
    font-size: 15px;
}

.hero .answer {
    margin-top: 18px;
}

.btn {
    display: inline-block;
    border: 2px solid var(--blue);
    padding: 14px 26px;
    color: var(--blue);
    background: var(--paper);
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.btn.primary {
    color: #fff;
    background: var(--blue);
}

.btn.full {
    width: 100%;
    margin-top: 2px;
}

.grid {
    display: grid;
    gap: 20px;
}

.top {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px var(--page-gutter);
    border-bottom: 1px solid var(--line-soft);
    background: var(--paper);
}

.logo img {
    width: 152px;
    height: auto;
}

.head-right {
    display: flex;
    gap: 22px;
    align-items: center;
}

.head-phone {
    color: var(--ink-3);
    font-size: 12px;
    line-height: 1.25;
    text-align: right;
}

.head-phone b {
    display: block;
    color: var(--ink);
    font-size: 16px;
}

.head-phone a {
    text-decoration: none;
}

.head-cta {
    padding: 11px 18px;
    font-size: 13px;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 44px;
    align-items: start;
    padding-top: 76px;
    padding-bottom: 76px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 18%, rgba(37, 191, 212, .24), transparent 34%),
        linear-gradient(135deg, #0c1b2a 0%, #10273d 55%, #07111d 100%);
    overflow: hidden;
}

.hero::before {
    position: absolute;
    right: -130px;
    bottom: -210px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(140, 220, 242, .24);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    max-width: 760px;
    font-size: 46px;
    line-height: 1.08;
}

.hero .answer,
.hero .sub {
    color: #d9e8f5;
}

.hero-ctas,
.sec-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    align-items: center;
    margin-top: 26px;
}

.hero-ctas .phone,
.sec-cta .alt {
    color: var(--ink-3);
    font-size: 13px;
}

.hero-ctas .phone {
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, .38);
    padding: 11px 18px;
    color: #d9e8f5;
    background: rgba(255, 255, 255, .06);
}

.hero-ctas .phone b {
    display: block;
    color: #fff;
    font-size: 16px;
}

.hero-ctas a,
.sec-cta a {
    text-decoration: none;
}

.trust-line {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 220px));
    gap: 14px;
    margin-top: 24px;
    color: #d9e8f5;
    font-size: 13px;
}

.trust-line span {
    display: flex;
    min-height: 82px;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(140, 220, 242, .25);
    padding: 16px 18px;
    background: rgba(255, 255, 255, .055);
    box-shadow: inset 0 3px 0 rgba(103, 189, 69, .8);
}

.trust-line span::before {
    color: #fff;
    content: attr(data-value);
    font-family: Ubuntu, "Open Sans", Arial, sans-serif;
    font-size: 27px;
    font-weight: 800;
    line-height: 1;
}

.hero-checks {
    max-width: 680px;
    margin-top: 26px;
}

.hero-checks p {
    margin-bottom: 10px;
    color: #8cdcf2;
    font-family: Ubuntu, "Open Sans", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.hero-checks ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
}

.hero-checks li {
    position: relative;
    min-height: 70px;
    border: 1px solid rgba(140, 220, 242, .24);
    padding: 14px 14px 14px 42px;
    color: #d9e8f5;
    background: rgba(255, 255, 255, .05);
    font-size: 13px;
    line-height: 1.45;
}

.hero-checks li::before {
    position: absolute;
    top: 16px;
    left: 14px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    content: "";
    background: var(--cyan);
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .82);
}

.quote-card,
.form-card {
    border: 1px solid var(--line);
    padding: 30px;
    background: var(--fill);
}

.quote-card {
    border-color: rgba(140, 220, 242, .32);
    border-top: 4px solid var(--cyan);
    color: var(--ink);
    background: rgba(247, 251, 253, .97);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.form-intro {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line-soft);
    padding-bottom: 16px;
}

.form-intro h3 {
    margin: 0;
    font-size: 19px;
}

.qsub,
.privacy {
    margin: 8px 0 0;
    color: var(--ink-2);
    font-size: 13px;
}

.privacy {
    margin: 12px 0 0;
    color: var(--ink-3);
    font-size: 11px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    min-width: 0;
    min-height: 48px;
    padding: 12px 13px;
    color: var(--ink);
    background: var(--paper);
    font: inherit;
    font-size: 14px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--blue);
    outline: 2px solid rgba(42, 100, 211, .12);
    outline-offset: 0;
}

textarea {
    grid-column: 1 / -1;
    min-height: 78px;
    resize: vertical;
}

select[name="staff_count"] {
    grid-column: 1 / -1;
}

.agreement {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 2px 0 8px;
    color: var(--ink-3);
    font-size: 11px;
    line-height: 1.5;
}

.agreement input {
    flex: 0 0 14px;
    width: 14px;
    min-width: 14px;
    height: 14px;
    min-height: 14px;
    margin: 2px 0 0;
    padding: 0;
}

.g-recaptcha {
    grid-column: 1 / -1;
    min-height: 74px;
}

.quote-card .btn,
.form-card .btn {
    grid-column: 1 / -1;
    margin-top: 2px;
}

.ads-form-status {
    margin-bottom: 14px;
    border: 1px solid transparent;
    padding: 11px 13px;
    font-size: 13px;
    line-height: 1.45;
}

.ads-form-status[data-state="success"] {
    border-color: #b8dfc2;
    color: #166534;
    background: #eef8f0;
}

.ads-form-status[data-state="error"] {
    border-color: #f0b9b9;
    color: #991b1b;
    background: #fff0f0;
}

.quote-card button:disabled,
.form-card button:disabled {
    cursor: wait;
    opacity: .72;
}

.cred-strip {
    padding: 20px var(--page-gutter);
    border-bottom: 1px solid var(--line-soft);
    background: var(--fill);
}

.cred-strip ul {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 30px;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.cred-strip li {
    border-left: 0;
    padding: 0;
    color: var(--ink-2);
    font-size: 11.5px;
    text-transform: uppercase;
}

.cred-strip img {
    display: block;
    width: auto;
    max-width: 132px;
    height: 34px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .72;
}

.cred-strip .logo-text {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid var(--line-soft);
    padding: 6px 12px;
    color: var(--ink-3);
    background: #fff;
    font-size: 11px;
    font-weight: 800;
}

.cred-strip p,
.stat-note {
    max-width: 760px;
    margin: 10px auto 0;
    color: var(--ink-3);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.strip-note {
    max-width: 74ch;
}

.rev-head {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
    justify-content: space-between;
}

.stars {
    color: var(--blue);
    font-size: 14px;
}

.reviews {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 22px;
}

.ads-google-reviews {
    min-height: 180px;
    margin-top: 22px;
    overflow: visible;
}

.ads-google-reviews .container-fluid.section {
    max-height: none !important;
    padding: 0 !important;
}

.review {
    display: flex;
    min-height: 150px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    padding: 20px;
    background: var(--paper);
    text-align: center;
}

.review span,
.img-ph span {
    color: var(--ink-3);
    font-size: 10.5px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
}

.media-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    margin-top: 24px;
}

.media-split.rev {
    grid-template-columns: 0.95fr 1.05fr;
}

.img-ph {
    display: flex;
    min-height: 300px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-soft);
    background: linear-gradient(135deg, rgba(35, 95, 215, 0.08), rgba(103, 189, 69, 0.08)), var(--fill);
    overflow: hidden;
}

.img-ph--photo {
    background: var(--fill);
}

.img-ph img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.frust-list {
    display: grid;
    gap: 12px;
    border-top: 0;
}

details.frust,
details.faq {
    border-bottom: 1px solid var(--line);
}

details.frust summary,
details.faq summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 18px 44px 18px 0;
}

details.frust {
    border: 1px solid var(--line-soft);
    background: #fff;
}

details.frust summary {
    padding: 18px 48px 18px 18px;
}

details.frust summary::-webkit-details-marker,
details.faq summary::-webkit-details-marker {
    display: none;
}

.fl,
.p-num,
.stat .sl {
    display: block;
    color: var(--ink-3);
    font-size: 11px;
    text-transform: uppercase;
}

.ft,
details.faq summary {
    font-size: 16.5px;
    font-weight: 800;
    line-height: 1.3;
}

details.frust summary::after,
details.faq summary::after {
    position: absolute;
    right: 6px;
    color: var(--ink-3);
    content: "+";
    font-size: 22px;
}

details.frust summary::after {
    top: 26px;
}

details.faq summary::after {
    top: 16px;
}

details[open] summary::after {
    content: "-";
}

.fb,
.fa {
    padding: 0 44px 20px 0;
    color: var(--ink-2);
    font-size: 14px;
}

.fb {
    padding: 0 18px 18px;
}

.sec-cta {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
}

.sec-cta.center {
    max-width: 760px;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
}

.deliver {
    border-bottom-color: #26384a;
    background: var(--ink);
}

.deliver h2,
.deliver .answer {
    color: #fff;
}

.deliver .sub {
    margin-right: auto;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.72);
}

.deliver-head {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.deliver-head .answer {
    margin-right: auto;
    margin-left: auto;
}

.deliver-benefits {
    grid-template-columns: repeat(3, 1fr);
    max-width: 860px;
    margin: 30px auto 34px;
}

.deliver-benefits div {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 14px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13.5px;
}

.deliver-benefits div::before,
.checks li::before {
    margin-right: 8px;
    color: var(--green);
    content: "\2713";
    font-weight: 800;
}

.deliver .sec-cta {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.deliver .btn {
    border-color: #fff;
    color: var(--ink);
    background: #fff;
}

.deliver .alt,
.deliver .alt a {
    color: #fff;
}

.sheet-wrap {
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid var(--line);
    background: var(--paper);
}

.sheet-top {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
}

.sheet-top .th {
    font-size: 18px;
    font-weight: 800;
}

.sheet-top .tmeta {
    color: var(--ink-3);
    font-size: 11px;
    text-align: right;
    text-transform: uppercase;
}

.sheet-top .tmeta strong {
    display: block;
    color: var(--ink);
    font-size: 13px;
}

table.findings {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

table.findings th {
    border-bottom: 1px solid var(--line);
    padding: 11px 22px;
    color: var(--ink-2);
    background: var(--fill-2);
    font-size: 11px;
    text-align: left;
    text-transform: uppercase;
}

table.findings td {
    border-bottom: 1px solid var(--line-soft);
    padding: 14px 22px;
    color: var(--ink-2);
    vertical-align: top;
}

.sheet-foot {
    padding: 12px 22px;
    color: var(--ink-3);
    background: var(--fill);
    font-size: 10.5px;
    text-transform: none;
}

.pri {
    display: inline-block;
    min-width: 34px;
    border: 1px solid var(--line);
    padding: 3px 7px;
    color: var(--ink-2);
    background: var(--fill);
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.pri.p1 {
    border-color: var(--ink);
    color: #fff;
    background: var(--ink);
}

.pri.p2 {
    border-color: var(--blue);
    color: var(--blue);
    background: #edf4ff;
}

table.findings .f {
    color: var(--ink);
    font-weight: 700;
}

.deliver-note {
    max-width: 760px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.sev-row {
    display: flex;
    border-bottom: 1px solid var(--line);
}

.sev-row div {
    flex: 1;
    border-left: 1px solid var(--line);
    padding: 14px 16px;
}

.sev-row div:first-child {
    border-left: 0;
}

.sev-row b {
    display: block;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.sev-row span {
    display: block;
    margin-top: 8px;
    color: var(--ink-3);
    font-size: 10.5px;
    text-transform: uppercase;
}

.chip {
    display: inline-block;
    border: 1px solid var(--line);
    padding: 3px 8px;
    color: var(--ink-2);
    background: var(--paper);
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
}

.chip.c {
    border-color: var(--ink);
    color: #fff;
    background: var(--ink);
}

.chip.h {
    border-color: var(--blue);
    color: #fff;
    background: var(--blue);
}

.chip.m {
    border-color: var(--line);
    color: var(--ink);
    background: var(--fill-2);
}

.chip.l {
    color: var(--ink-3);
}

.ih-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 22px;
}

.ih {
    border: 1px solid var(--line);
    padding: 18px;
    background: var(--paper);
}

.ih h3 {
    margin-bottom: 6px;
    font-size: 14.5px;
}

.ih p {
    color: var(--ink-2);
    font-size: 13px;
}

.ih .reg {
    display: inline-block;
    margin-top: 12px;
    border: 1px solid var(--line);
    padding: 3px 8px;
    color: var(--ink-3);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
}

.checklist {
    margin-top: 18px;
    list-style: none;
}

.checklist li {
    position: relative;
    border-top: 1px solid var(--line-soft);
    padding: 11px 0 11px 26px;
    color: var(--ink-2);
    font-size: 14px;
}

.checklist li:first-child {
    border-top: 0;
}

.checklist li::before {
    position: absolute;
    top: 17px;
    left: 0;
    width: 9px;
    height: 9px;
    content: "";
    background: var(--green);
}

.checklist li b {
    color: var(--ink);
}

.process {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 24px;
}

.process--five {
    grid-template-columns: repeat(5, 1fr);
}

.p-step {
    border-top: 3px solid var(--blue);
    padding-top: 14px;
}

.p-step h3 {
    margin: 6px 0;
    font-size: 15px;
}

.p-step p {
    color: var(--ink-2);
    font-size: 12.5px;
}

.proc-img {
    aspect-ratio: 16 / 9;
    min-height: 0;
    margin-top: 26px;
}

.proc-img img {
    min-height: 0;
    object-position: center center;
}

.stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stat {
    position: relative;
    border: 1px solid var(--line-soft);
    padding: 20px;
    background: #fff;
    overflow: hidden;
}

.stat:first-child {
    padding-left: 0;
    padding-left: 20px;
}

.stat b {
    display: block;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.stat::after {
    display: block;
    width: var(--bar, 72%);
    height: 6px;
    margin-top: 18px;
    content: "";
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.stat p {
    margin-top: 7px;
    color: var(--ink-2);
    font-size: 12.5px;
}

.no-margin {
    margin-bottom: 0;
}

.gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 14px;
    margin-top: 24px;
}

.gallery .img-ph {
    min-height: 0;
}

.gallery .img-ph img {
    min-height: 0;
}

.gallery .img-ph:first-child {
    grid-row: span 2;
    grid-column: span 2;
}

.faq-list {
    margin-top: 22px;
    border-top: 1px solid var(--line);
}

.final {
    background: var(--fill);
}

.final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.form-card {
    background: var(--paper);
}

.form-card h3 {
    margin: 0;
}

.checks {
    margin-top: 20px;
    list-style: none;
}

.checks li {
    border-top: 1px solid var(--line);
    padding: 9px 0;
    color: var(--ink-2);
    font-size: 14px;
}

.cap-line {
    margin-top: 18px;
    color: var(--ink-3);
    font-size: 12.5px;
}

footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    padding: 30px var(--page-gutter);
    color: var(--ink-3);
    font-size: 12px;
}

.mbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: none;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding: 10px 14px;
    background: var(--paper);
}

.mbar a {
    flex: 1;
    border: 2px solid var(--blue);
    padding: 13px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.mbar .cta {
    color: #fff;
    background: var(--blue);
}

@media (max-width: 860px) {
    .hero,
    .media-split,
    .media-split.rev,
    .final-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ih-grid,
    .process,
    .process--five {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .page {
        padding-bottom: 64px;
    }

    section {
        padding: 40px 20px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 22px;
    }

    .top {
        padding: 12px 20px;
    }

    .logo img {
        width: 128px;
    }

    .head-phone {
        display: none;
    }

    .head-cta {
        padding: 10px 12px;
        font-size: 12px;
    }

    .cred-strip {
        padding: 14px 16px;
    }

    .cred-strip li {
        border-left: 0;
        padding: 3px 10px;
        font-size: 11px;
    }

    .grid,
    .reviews,
    .ih-grid,
    .deliver-benefits,
    .hero-checks ul,
    .stats {
        grid-template-columns: 1fr;
    }

    .stat {
        border-top: 1px solid var(--line-soft);
        border-left: 0;
        padding: 18px 0 0;
    }

    .stat:first-child {
        border-top: 0;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }

    .gallery .img-ph:first-child {
        grid-row: span 1;
        grid-column: span 2;
    }

    table.findings,
    table.findings thead,
    table.findings tbody,
    table.findings tr,
    table.findings td {
        display: block;
    }

    table.findings thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    table.findings tr {
        border-bottom: 1px solid var(--line);
        padding: 14px 16px;
    }

    table.findings td {
        display: grid;
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
        border-bottom: 0;
        padding: 6px 0;
    }

    table.findings td::before {
        color: var(--ink-3);
        content: attr(data-label);
        font-size: 10px;
        font-weight: 800;
        line-height: 1.4;
        text-transform: uppercase;
    }

    table.findings .f {
        font-size: 14px;
    }

    footer {
        padding: 24px 20px;
    }

    .mbar {
        display: flex;
    }
}

@media (max-width: 520px) {
    .top {
        gap: 12px;
    }

    .head-cta {
        display: none;
    }

    .quote-card,
    .form-card {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        line-height: 1.25;
    }

    .mbar .call {
        flex: 0 0 76px;
    }
}

@media (max-width: 380px) {
    section {
        padding-right: 16px;
        padding-left: 16px;
    }

    .quote-card,
    .form-card {
        padding: 16px;
    }

    .g-recaptcha {
        height: 68px;
        transform: scale(.9);
        transform-origin: left top;
    }

    table.findings td {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}
