/* Zentrix IT Solutions — colours taken from the logo */
:root {
    --green: #4caf2f;
    --green-2: #7cc242;
    --blue: #1784a3;
    --blue-2: #1d5fa8;
    --navy: #0f1c2b;
    --navy-2: #172a3f;
    --slate: #3c4b5c;
    --ink: #142232;
    --text: #44525f;
    --muted: #6b7885;
    --line: #e2e7ec;
    --bg: #ffffff;
    --bg-alt: #f3f6f8;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(15, 28, 43, .08);
    --grad: linear-gradient(120deg, var(--green) 0%, var(--blue) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 800; letter-spacing: -.01em; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.lead { font-size: 1.15rem; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow {
    display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--green); margin-bottom: .8rem;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .85rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: .98rem;
    text-decoration: none; border: 2px solid transparent; cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: .5rem 1.1rem; font-size: .9rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(23, 132, 163, .3); }
.btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-ghost:hover { background: rgba(255, 255, 255, .08); }
.btn-ghost-dark { color: var(--ink); border-color: var(--line); background: #fff; }
.btn-light { background: #fff; color: var(--navy); }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .92); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand img { width: 44px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-zen { font-weight: 800; font-size: 1.3rem; letter-spacing: .02em; color: var(--slate); }
.brand-zen b { color: var(--green); font-weight: 800; }
.brand-text small { font-size: .62rem; font-weight: 700; letter-spacing: .28em; color: var(--blue-2); margin-top: 4px; }
.brand-light .brand-zen { color: #fff; }
.brand-light .brand-text small { color: #7fc4de; }

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a:not(.btn) {
    color: var(--slate); text-decoration: none; font-weight: 600; font-size: .96rem; position: relative; padding: .3rem 0;
}
.nav-links a:not(.btn):hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px; border-radius: 3px; background: var(--grad);
}
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* Hero */
.hero {
    position: relative; overflow: hidden; color: #cfdbe6;
    background:
        radial-gradient(900px 500px at 85% 20%, rgba(23, 132, 163, .35), transparent 60%),
        radial-gradient(700px 500px at 10% 100%, rgba(76, 175, 47, .22), transparent 60%),
        var(--navy);
}
.hero h1 { color: #fff; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; padding: 6rem 20px 6.5rem; }
.hero .lead { color: #b9c7d4; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-art { position: relative; display: grid; place-items: center; }
.hero-art img { position: relative; width: min(100%, 360px); height: auto; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .45)); animation: float 6s ease-in-out infinite; }
.orb { position: absolute; width: 80%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(124, 194, 66, .25), transparent 65%); }
@keyframes float { 50% { transform: translateY(-14px); } }

/* Sections */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head p { color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card p { margin: 0; font-size: .96rem; }
.icon {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1.2rem;
    background: linear-gradient(135deg, rgba(76, 175, 47, .14), rgba(23, 132, 163, .14));
}
.icon svg { width: 26px; height: 26px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Featured product */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.checks { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.checks li { position: relative; padding-left: 2rem; margin-bottom: .8rem; }
.checks li::before {
    content: ""; position: absolute; left: 0; top: .3rem; width: 1.2rem; height: 1.2rem; border-radius: 50%;
    background: var(--grad) center / 100% no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10'/%3E%3Cpath d='M5.5 10.5l3 3 6-6.5' stroke='white' stroke-width='2.2' fill='none'/%3E%3C/svg%3E");
}
.checks strong { color: var(--ink); }
.feature-phones { position: relative; height: 560px; }
.phone { position: absolute; width: 255px; border-radius: 28px; border: 8px solid var(--navy); box-shadow: 0 30px 60px rgba(15, 28, 43, .25); background: #fff; }
.phone-front { left: 12%; top: 0; z-index: 2; }
.phone-back { right: 6%; top: 60px; transform: rotate(5deg); opacity: .95; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: s; }
.steps li { padding: 1.6rem; border-radius: var(--radius); background: var(--bg-alt); }
.steps span { display: inline-block; font-weight: 800; font-size: 1.6rem; margin-bottom: .4rem; }
.steps span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.steps p { margin: 0; font-size: .95rem; }

/* CTA */
.cta { background: var(--grad); color: #eaf6f3; padding: 4rem 0; }
.cta h2 { color: #fff; }
.cta p { margin: 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
    color: #c3d0dc; padding: 4.5rem 0 4rem;
    background: radial-gradient(800px 400px at 90% 0%, rgba(23, 132, 163, .35), transparent 60%), var(--navy);
}
.page-hero h1 { color: #fff; }
.page-hero .lead { color: #b9c7d4; max-width: 42rem; }

/* Services list */
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.6rem; }
.service-card {
    display: flex; flex-direction: column; text-decoration: none; color: inherit; overflow: hidden;
    background: #fff; border: 1px solid var(--line); border-radius: 20px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-shot {
    height: 240px; overflow: hidden; display: flex; justify-content: center; padding-top: 28px;
    background: linear-gradient(135deg, rgba(76, 175, 47, .18), rgba(23, 132, 163, .22));
}
.service-shot img { width: 190px; border-radius: 20px 20px 0 0; border: 6px solid var(--navy); border-bottom: 0; object-fit: cover; object-position: top; }
.service-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.service-body h2 { font-size: 1.5rem; margin-top: .6rem; }
.service-body p { color: var(--muted); }
.service-meta { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1rem; }
.service-meta span { font-size: .8rem; font-weight: 600; background: var(--bg-alt); border-radius: 999px; padding: .25rem .7rem; color: var(--slate); }
.link-arrow { margin-top: auto; font-weight: 700; color: var(--blue); text-decoration: none; }
.service-soon { border-style: dashed; background: var(--bg-alt); justify-content: center; }
.tag {
    align-self: flex-start; display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .04em;
    padding: .3rem .75rem; border-radius: 999px; color: var(--blue); background: rgba(23, 132, 163, .1);
}
.tag-light { color: #bfe6c2; background: rgba(124, 194, 66, .16); margin-bottom: 1rem; }

/* Product page */
.product-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center; }
.back { display: block; color: #9fb3c5; text-decoration: none; font-weight: 600; font-size: .9rem; margin-bottom: 1.4rem; }
.back:hover { color: #fff; }
.product-phone { display: flex; justify-content: center; }
.product-phone img { width: 270px; border-radius: 30px; border: 9px solid #05101b; box-shadow: 0 30px 70px rgba(0, 0, 0, .5); }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.gallery figure { margin: 0; text-align: center; }
.gallery img { border-radius: 20px; border: 6px solid var(--navy); box-shadow: var(--shadow); transition: transform .2s; }
.gallery a:hover img { transform: scale(1.02); }
.gallery figcaption { font-size: .88rem; color: var(--muted); margin-top: .8rem; }

.download-box {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3rem; border-radius: 24px;
    background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.5rem 0 2rem; }
.specs div { background: var(--bg-alt); border-radius: 12px; padding: .8rem 1rem; }
.specs dt { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.specs dd { margin: .2rem 0 0; color: var(--ink); font-weight: 600; word-break: break-all; }
.specs code { font-size: .85rem; }
.install-steps { border-left: 1px solid var(--line); padding-left: 3rem; }
.install-steps ol { padding-left: 1.2rem; }
.install-steps li { margin-bottom: .6rem; }

.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(5, 12, 20, .88); display: grid; place-items: center; padding: 20px; cursor: zoom-out; }
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 92vh; width: auto; border-radius: 16px; }

/* Footer */
.site-footer { background: var(--navy); color: #9fb0c0; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.site-footer a:not(.brand) { display: block; color: #9fb0c0; text-decoration: none; margin-bottom: .5rem; font-size: .95rem; }
.site-footer a:not(.brand):hover { color: #fff; }
.site-footer .muted { color: #7d8ea0; margin-top: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); margin-top: 3rem; padding: 1.4rem 20px; font-size: .85rem; color: #6f8193; }

/* Responsive */
@media (max-width: 1000px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .feature { grid-template-columns: 1fr; gap: 2rem; }
    .feature-phones { height: 520px; max-width: 520px; margin: 0 auto; width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
        background: #fff; border-bottom: 1px solid var(--line); padding: .5rem 20px 1.2rem; display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a:not(.btn) { padding: .9rem 0; border-bottom: 1px solid var(--line); }
    .nav-links a.active::after { display: none; }
    .nav-links .btn { margin-top: 1rem; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero-grid, .product-hero-grid { grid-template-columns: 1fr; padding-top: 3.5rem; padding-bottom: 4rem; }
    .hero-art { order: -1; padding-top: 1rem; }
    .hero-art img { width: 240px; }
    .product-phone img { width: 230px; }
    .section { padding: 4rem 0; }
    .download-box { grid-template-columns: 1fr; padding: 1.6rem; gap: 2rem; }
    .install-steps { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 2rem; }
}
@media (max-width: 560px) {
    .container { padding: 0 16px; }
    .card-grid, .card-grid-3, .steps { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .feature-phones { height: 440px; }
    .phone { width: 190px; border-width: 6px; border-radius: 22px; }
    .phone-front { left: 0; }
    .phone-back { right: 0; top: 40px; }
    .specs { grid-template-columns: 1fr; }
    .btn { width: 100%; }
    .nav-links .btn { width: auto; }
}

/* ============ LaundryZen live demo phones (see assets/js/laundryzen-demo.js) ============ */
.lz-phone {
    position: relative; width: 270px; aspect-ratio: 360 / 760; overflow: hidden;
    border: 9px solid #05101b; border-radius: 34px; background: #EFF1F0;
    box-shadow: 0 30px 70px rgba(5, 16, 27, .35); flex: none;
}
.lz-screen {
    position: absolute; top: 0; left: 0; width: 360px; height: 760px; transform-origin: 0 0;
    font-family: "Open Sans", system-ui, sans-serif; color: #101A18; font-size: 14px; line-height: 1.35;
    background: #EFF1F0; overflow: hidden; text-align: left;
}
.lz-status {
    height: 26px; background: #2B0B98; color: #fff; font-size: 12px; display: flex;
    justify-content: space-between; align-items: center; padding: 0 14px;
}
.lz-icons i { display: inline-block; width: 11px; height: 9px; margin-left: 4px; background: rgba(255, 255, 255, .9); border-radius: 2px; }
.lz-icons i:first-child { clip-path: polygon(50% 100%, 0 20%, 100% 20%); border-radius: 0; }
.lz-icons i:nth-child(2) { clip-path: polygon(100% 0, 100% 100%, 0 100%); border-radius: 0; }
.lz-appbar {
    height: 56px; background: #fff; display: flex; align-items: center; gap: 18px; padding: 0 18px;
    font-size: 20px; font-weight: 600; box-shadow: 0 2px 6px rgba(0, 0, 0, .12); position: relative; z-index: 2;
}
.lz-back { font-size: 22px; font-weight: 400; }
.lz-body { position: absolute; top: 82px; bottom: 56px; left: 0; right: 0; overflow: hidden; }
.lz-scroll { padding: 16px; display: flex; flex-direction: column; gap: 16px; transition: transform 1.1s cubic-bezier(.4, 0, .2, 1); }
.lz-tabbar {
    position: absolute; left: 0; right: 0; bottom: 0; height: 56px; background: #fff; display: flex;
    border-top: 1px solid #e4e4e4; z-index: 2;
}
.lz-tabbar span { flex: 1; display: grid; place-items: center; font-size: 12.5px; color: #212121; }
.lz-tabbar span.on { color: #D600AA; font-weight: 600; }

.lz-card { background: #fff; border: 1px solid #DBE2E0; border-radius: 12px; padding: 16px; }
.lz-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.lz-muted { color: #5C6B68; font-size: 12.5px; }
.lz-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: #5C6B68; margin-bottom: 4px; }
.lz-heading { font-size: 19px; font-weight: 700; }
.lz-btn {
    background: #512BD4; color: #fff; border-radius: 8px; min-height: 44px; padding: 10px 14px;
    display: flex; align-items: center; justify-content: center; font-size: 14px; text-align: center;
    transition: transform .12s ease, filter .12s ease, background .3s ease;
}
.lz-btn.pressed { transform: scale(.94); filter: brightness(1.25); }
.lz-btn-sm { min-height: 38px; padding: 6px 14px; font-size: 13px; white-space: nowrap; }

/* dashboard */
.lz-hero {
    border-radius: 22px; padding: 18px 20px; color: #fff;
    background: linear-gradient(135deg, #0B6E99 0%, #0A4F6E 60%, #123C4F 100%);
    box-shadow: 0 8px 18px rgba(11, 110, 153, .35);
}
.lz-cap { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; opacity: .75; }
.lz-greet { font-size: 15px; opacity: .9; margin-top: 2px; }
.lz-date { font-size: 12px; opacity: .65; }
.lz-sales { font-size: 40px; font-weight: 700; line-height: 1.2; font-variant-numeric: tabular-nums; }
.lz-sub { font-size: 13px; opacity: .85; }
.lz-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lz-stat { padding: 12px 14px; }
.lz-stat b { display: block; font-size: 26px; line-height: 1.2; }
.lz-stat span { color: #5C6B68; font-size: 12.5px; }
.lz-sechead { display: flex; justify-content: space-between; align-items: center; margin: 4px 4px 0; }
.lz-sechead .lz-eyebrow { margin: 0; }
.lz-legend { display: flex; gap: 14px; margin: -8px 4px 0; font-size: 11.5px; color: #5C6B68; }
.lz-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 5px; vertical-align: -1px; }
.lz-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lz-tile {
    background: #fff; border: 1px solid #DBE2E0; border-radius: 18px; padding: 14px 10px 12px;
    display: flex; flex-direction: column; align-items: center; gap: 4px; box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}
.lz-tile canvas { width: 118px; height: 118px; }
.lz-kind { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; color: #5C6B68; }
.lz-mname { font-size: 16px; font-weight: 700; }
.lz-who { font-size: 13px; color: #5C6B68; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.lz-pill { font-size: 11.5px; font-weight: 700; padding: 3px 10px; border-radius: 10px; }

/* entrance animations, as in the app's DashboardPage */
.lz-hero, .lz-stats { opacity: 0; transform: translateY(18px); transition: opacity .38s cubic-bezier(.33, 1, .68, 1), transform .38s cubic-bezier(.33, 1, .68, 1); }
.lz-tile { opacity: 0; transform: translateY(24px) scale(.96); transition: opacity .36s cubic-bezier(.33, 1, .68, 1), transform .36s cubic-bezier(.33, 1, .68, 1); }
.lz-order { opacity: 0; transform: translateY(14px); transition: opacity .35s ease, transform .35s ease, background .5s ease; }
.lz-hero.in, .lz-stats.in, .lz-tile.in, .lz-order.in,
.lz-static .lz-hero, .lz-static .lz-stats, .lz-static .lz-tile, .lz-static .lz-order { opacity: 1; transform: none; }
.lz-order.flash { background: #eef6fa; }

/* orders, order, done */
.lz-scroll > .lz-order { margin: -6px 0; }
.lz-order b { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lz-order .lz-row + .lz-row, .lz-ostatus { margin-top: 4px; }
.lz-ostatus { font-size: 13px; font-weight: 700; transition: color .3s; }
.lz-list { display: flex; flex-direction: column; gap: 12px; }
.lz-intro { margin-bottom: -4px; }
.lz-phone-no { font-size: 17px; margin-top: 2px; }
.lz-two { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.lz-sms.hot { background: #1C8049; }
.lz-line { padding: 3px 0; }
.lz-hr { height: 1px; background: #DBE2E0; margin: 6px 0; }
.lz-sheet {
    position: absolute; left: 0; right: 0; bottom: -60px; background: #fff; border-radius: 18px 18px 0 0;
    padding: 18px 16px 76px; box-shadow: 0 -10px 30px rgba(0, 0, 0, .2); transform: translateY(110%);
    transition: transform .5s cubic-bezier(.33, 1, .68, 1); z-index: 3;
}
.lz-sheet.up { transform: translateY(-60px); }
.lz-sheet-head { font-size: 13px; color: #5C6B68; margin-bottom: 12px; }
.lz-bubble { background: #E3F2FD; border-radius: 16px 16px 4px 16px; padding: 12px 14px; font-size: 14px; margin-left: 30px; }
.lz-send { display: flex; justify-content: flex-end; margin-top: 12px; }
.lz-send span { background: #1C8049; color: #fff; border-radius: 20px; padding: 8px 20px; font-weight: 600; }

/* the demo fingertip */
.lz-finger {
    position: absolute; width: 46px; height: 46px; margin: -23px 0 0 -23px; border-radius: 50%; z-index: 10;
    background: rgba(255, 255, 255, .55); border: 2px solid rgba(16, 26, 24, .35); box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
    opacity: 0; transform: scale(1.4); pointer-events: none;
    transition: opacity .3s ease, transform .2s ease, left .6s cubic-bezier(.4, 0, .2, 1), top .6s cubic-bezier(.4, 0, .2, 1);
}
.lz-finger.show { opacity: 1; transform: scale(1); }
.lz-finger.press { transform: scale(.78); background: rgba(255, 255, 255, .8); }

/* placement on the website */
.feature-phones.lz-duo { height: auto; display: flex; justify-content: center; align-items: flex-start; }
.lz-duo .lz-phone:first-child { z-index: 2; }
.lz-duo .lz-phone:last-child { margin-left: -40px; margin-top: 70px; transform: rotate(4deg); width: 240px; }
.service-shot .lz-phone { width: 200px; border-width: 6px; border-bottom: 0; border-radius: 24px 24px 0 0; aspect-ratio: auto; height: 212px; box-shadow: none; }
.product-phone .lz-phone { width: 280px; }
.lz-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.lz-gallery figure { margin: 0; text-align: center; }
.lz-gallery .lz-phone { width: 100%; max-width: 250px; margin: 0 auto; border-width: 7px; border-radius: 28px; }
.lz-gallery figcaption { font-size: .9rem; color: var(--muted); margin-top: .9rem; }
.lz-gallery figcaption strong { display: block; color: var(--ink); }
@media (max-width: 1000px) { .lz-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
    .lz-duo .lz-phone:first-child { width: 210px; }
    .lz-duo .lz-phone:last-child { width: 180px; margin-left: -60px; margin-top: 50px; }
    .lz-gallery { gap: 1.2rem; }
    .product-phone .lz-phone { width: 240px; }
}
