/* =====================================================
   # 1 Globale Einstellungen
===================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: #071527;
    color: #ffffff;
}

/* =====================================================
   # 2 Container
===================================================== */
.zm-container {
    width: min(1710px, calc(100% - 80px));
    margin: 0 auto;
}

/* =====================================================
   # 3 Header
===================================================== */
.zm-header {
    width: 100%;
    height: 74px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 50;
}

.zm-header-inner {
    width: min(1710px, calc(100% - 80px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.zm-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0f253d;
    text-decoration: none;
}

.zm-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 12px;
}

.zm-brand strong {
    display: block;
    font-size: 27px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.7px;
    color: #1f5eb8;
}

.zm-brand small {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #0f253d;
}

.zm-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.zm-nav a {
    color: #1f3348;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
}

.zm-nav a:hover {
    color: #1198ff;
}

.zm-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* =====================================================
   # 4 Buttons
===================================================== */
.zm-btn {
    min-height: 44px;
    padding: 0 24px;
    border: 0;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: 0.22s ease;
    white-space: nowrap;
}

.zm-btn:hover {
    transform: translateY(-2px);
}

.zm-btn-login,
.zm-btn-primary {
    background: linear-gradient(135deg, #011729, #196ad2);
    color: #ffffff;
    box-shadow: 0 18px 35px rgba(17, 152, 255, 0.28);
}

.zm-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* =====================================================
   # 5 Hero Bereich
===================================================== */
.zm-hero {
    position: relative;
    min-height: calc(100vh - 74px);
    padding: 58px 0 54px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 15%, rgba(25, 210, 205, 0.26), transparent 34%),
        radial-gradient(circle at 18% 80%, rgba(21, 151, 255, 0.22), transparent 34%),
        linear-gradient(135deg, #061426 0%, #09203c 52%, #071527 100%);
}

.zm-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.65;
}

.zm-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 65% 35%;
    align-items: center;
    gap: 70px;
}

.zm-hero-content {
    padding-top: 28px;
}

.zm-badge {
    width: fit-content;
    padding: 11px 18px;
    border-radius: 999px;
    color: #19c8ff;
    background: rgba(21, 151, 255, 0.12);
    border: 1px solid rgba(21, 151, 255, 0.35);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 22px;
}

.zm-hero h1 {
    max-width: 1000px;
    font-size: clamp(30px, 2.3vw, 44px);
    line-height: 1.14;
    letter-spacing: -0.7px;
}

.zm-hero-text {
    max-width: 760px;
    margin-top: 24px;
    color: #d9edff;
    font-size: 18px;
    line-height: 1.65;
}

.zm-hero-buttons {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.zm-trust-row {
    max-width: 760px;
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.zm-trust-row span {
    padding: 10px 15px;
    border-radius: 999px;
    color: #dcecff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: 900;
}

/* =====================================================
   # 6 Dashboard Karte
===================================================== */
.zm-dashboard-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 26px;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
        0 45px 100px rgba(0,0,0,0.32),
        inset 0 1px 0 rgba(255,255,255,0.14);
    backdrop-filter: blur(18px);
    transform: translateY(-8px);
}

.zm-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #cce6ff;
    margin-bottom: 22px;
}

.zm-card-top span {
    font-size: 14px;
    font-weight: 800;
}

.zm-card-top strong {
    padding: 8px 13px;
    border-radius: 999px;
    color: #27f0d4;
    background: rgba(39, 240, 212, 0.12);
    font-size: 13px;
}

.zm-summary-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.14);
    margin-bottom: 20px;
}

.zm-summary-card small {
    color: #b8cde2;
    font-size: 13px;
    font-weight: 800;
}

.zm-summary-card strong {
    display: block;
    margin-top: 8px;
    font-size: 34px;
}

.zm-summary-card span {
    display: block;
    margin-top: 8px;
    color: #8eeaff;
    font-size: 13px;
    font-weight: 800;
}

.zm-chart-box {
    position: relative;
    height: 190px;
    width: 100%;
    max-width: 100%;
    margin: 24px auto 0;
    padding: 24px 18px 18px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(21,151,255,0.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.10);
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 14px;
}

.zm-chart-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.7;
}

.zm-chart-box::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
    width: 260px;
    height: 120px;
    background: rgba(21,151,255,0.18);
    filter: blur(50px);
}

.zm-chart-line {
    position: relative;
    width: 52px;
    border-radius: 18px 18px 8px 8px;
    background: linear-gradient(180deg, #24e1d2, #1d8fff);
    box-shadow:
        0 0 20px rgba(21,151,255,0.35),
        0 18px 40px rgba(21,151,255,0.22);
    animation: zmFloat 3s ease-in-out infinite;
    z-index: 2;
}

.line-one {
    height: 42%;
    animation-delay: 0s;
}

.line-two {
    height: 68%;
    animation-delay: .3s;
}

.line-three {
    height: 54%;
    animation-delay: .6s;
}

.line-four {
    height: 88%;
    animation-delay: .9s;
}

@keyframes zmFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

.zm-mini-list {
    margin-top: 22px;
    display: grid;
    gap: 13px;
}

.zm-mini-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d7e9ff;
    font-size: 14px;
    font-weight: 800;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.green {
    background: #2df0a0;
}

.blue {
    background: #1597ff;
}

.orange {
    background: #ffb547;
}

/* =====================================================
   # 7 Sektionen Allgemein
===================================================== */
.zm-section {
    padding: 90px 0;
    background: #f6f9fc;
    color: #102033;
}

.zm-section-head {
    max-width: 850px;
    margin: 0 auto 54px;
    text-align: center;
}

.zm-section-head span,
.zm-small-title {
    display: inline-block;
    margin-bottom: 15px;
    color: #1597ff;
    font-size: 14px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zm-section-head h2 {
    font-size: clamp(34px, 3vw, 54px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.zm-section-head p {
    margin-top: 18px;
    color: #52647a;
    font-size: 19px;
    line-height: 1.7;
}

/* =====================================================
   # 8 Feature Cards
===================================================== */
.zm-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.zm-feature-card {
    min-height: 250px;
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    transition: 0.25s ease;
}

.zm-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.13);
}

.zm-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(21,151,255,0.15), rgba(25,210,205,0.16));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 22px;
}

.zm-feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #102033;
}

.zm-feature-card p {
    color: #5a6c80;
    font-size: 16px;
    line-height: 1.65;
}

/* =====================================================
   # 9 Vorteile / Warum ZahlMeister
===================================================== */
.zm-benefit-section {
    padding: 76px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(21,151,255,0.10), transparent 34%),
        #f6f9fc;
}

.zm-benefit-head {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.zm-benefit-head h2 {
    margin-top: 10px;
    color: #102033;
    font-size: clamp(30px, 2.6vw, 46px);
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.zm-benefit-head p {
    max-width: 760px;
    margin: 18px auto 0;
    color: #52647a;
    font-size: 17px;
    line-height: 1.65;
}

.zm-benefit-new-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 26px;
    align-items: stretch;
}

.zm-benefit-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.zm-benefit-card {
    min-height: 185px;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.zm-benefit-card .zm-benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(21,151,255,0.12), rgba(25,210,205,0.14));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.zm-benefit-card h3 {
    color: #102033;
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.zm-benefit-card p {
    color: #5d7086;
    font-size: 15px;
    line-height: 1.55;
}

.zm-benefit-logo-card {
    min-height: 100%;
    padding: 20px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 20%, rgba(21,151,255,0.16), transparent 42%),
        #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.zm-benefit-logo-card img {
    width: 92%;
    max-width: unset;
    height: auto;
    object-fit: contain;
    display: block;
}

/* =====================================================
   # 10 Preise / Pakete
===================================================== */
.zm-pricing-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at top right, rgba(25,210,205,0.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(21,151,255,0.14), transparent 30%),
        linear-gradient(135deg, #071527 0%, #0a1f3a 55%, #071527 100%);
    overflow: hidden;
    color: #ffffff;
}

.zm-pricing-section .zm-section-head {
    margin-bottom: 34px;
}

.zm-pricing-section .zm-small-title {
    color: #27b2ff;
}

.zm-pricing-section .zm-section-head h2 {
    font-size: clamp(30px, 2.3vw, 42px);
    line-height: 1.12;
    color: #ffffff;
}

.zm-pricing-section .zm-section-head p {
    font-size: 16px;
    color: #b7cbe0;
}

.zm-pricing-grid {
    margin-top: 34px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.zm-price-card {
    position: relative;
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 20px 60px rgba(15,23,42,0.06);
}

.zm-price-highlight {
    border: 2px solid rgba(21,151,255,0.22);
    box-shadow: 0 30px 80px rgba(21,151,255,0.10);
}

.zm-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1597ff, #19d2cd);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.zm-price-top small {
    color: #1597ff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.zm-price-top h3 {
    margin-top: 16px;
    color: #102033;
    font-size: 42px;
    line-height: 1;
}

.zm-price-top h3 span {
    display: block;
    margin-top: 10px;
    color: #5f7388;
    font-size: 15px;
    font-weight: 700;
}

.zm-price-top p {
    margin-top: 16px;
    color: #5d7086;
    font-size: 15px;
    line-height: 1.6;
}

.zm-price-features {
    margin-top: 24px;
    display: grid;
    gap: 11px;
}

.zm-price-features div {
    color: #102033;
    font-size: 14px;
    font-weight: 700;
}

.zm-price-card .zm-btn {
    width: 100%;
    margin-top: 26px;
    min-height: 42px;
}

/* =====================================================
   # 11 CTA
===================================================== */
.zm-cta {
    padding: 54px 0 64px;
    background:
        radial-gradient(circle at 80% 20%, rgba(25,210,205,0.18), transparent 30%),
        linear-gradient(135deg, #071527, #09203c);
}

.zm-cta-box {
    max-width: 1120px;
    margin: 0 auto;
    padding: 42px 40px;
    border-radius: 28px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    backdrop-filter: blur(10px);
}

.zm-cta-box h2 {
    max-width: 860px;
    margin: 0 auto;
    font-size: clamp(28px, 2.2vw, 44px);
    line-height: 1.14;
    letter-spacing: -1px;
}

.zm-cta-box p {
    max-width: 720px;
    margin: 16px auto 0;
    color: #d7e9ff;
    font-size: 17px;
    line-height: 1.65;
}

.zm-cta-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

/* =====================================================
   # 12 Footer
===================================================== */
.zm-footer {
    background: #09203c;
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.zm-footer-main {
    min-height: 230px;
    padding: 54px 0 42px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 70px;
}

.zm-footer-col h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.zm-footer-col h4 {
    font-size: 18px;
    margin-bottom: 22px;
}

.zm-footer-col p,
.zm-footer-col a {
    display: block;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.45;
    text-decoration: none;
    margin-bottom: 8px;
}

.zm-footer-col a:hover {
    color: #19d2cd;
}

.zm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.14);
}

.zm-footer-bottom-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
}

.zm-footer-bottom-inner strong {
    color: #19d2cd;
}

/* =====================================================
   # 13 Laptop 15 / 17 Zoll
===================================================== */
@media (min-width: 1101px) and (max-width: 1700px) {
    .zm-container,
    .zm-header-inner {
        width: min(1280px, calc(100% - 56px));
    }

    .zm-hero {
        padding: 44px 0 46px;
    }

    .zm-hero-grid {
        grid-template-columns: 58% 42%;
        gap: 42px;
    }

    .zm-hero h1 {
        max-width: 720px;
        font-size: clamp(26px, 2.2vw, 38px);
        line-height: 1.16;
        letter-spacing: -0.6px;
    }

    .zm-dashboard-card {
        max-width: 420px;
        margin: 0 auto;
        padding: 24px;
    }

    .zm-chart-box {
        height: 160px;
    }

    .zm-price-card {
        padding: 26px;
    }
}

/* =====================================================
   # 14 Tablet
===================================================== */
@media (max-width: 1100px) {
    .zm-nav {
        display: none;
    }

    .zm-hero-grid,
    .zm-benefit-new-grid {
        grid-template-columns: 1fr;
    }

    .zm-dashboard-card {
        max-width: 100%;
        margin: 0;
    }

    .zm-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zm-benefit-logo-card {
        min-height: 260px;
    }

    .zm-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .zm-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   # 15 Mobile
===================================================== */
@media (max-width: 700px) {
    .zm-container,
    .zm-header-inner {
        width: calc(100% - 32px);
    }

    .zm-header {
        height: auto;
        padding: 14px 0;
    }

    .zm-header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .zm-brand strong {
        font-size: 23px;
    }

    .zm-brand small {
        font-size: 12px;
    }

    .zm-header-actions,
    .zm-header-actions .zm-btn {
        width: 100%;
    }

    .zm-hero {
        padding: 58px 0 62px;
    }

    .zm-hero h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .zm-hero-text {
        font-size: 17px;
    }

    .zm-hero-buttons,
    .zm-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .zm-feature-grid,
    .zm-benefit-cards {
        grid-template-columns: 1fr;
    }

    .zm-benefit-card {
        min-height: unset;
    }

    .zm-cta-box {
        padding: 34px 22px;
    }

    .zm-footer-main {
        grid-template-columns: 1fr;
        gap: 26px;
        min-height: unset;
        padding: 38px 0 30px;
    }

    .zm-footer-bottom-inner {
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =====================================================
   # 10 Preise / Ein Paket Premium
===================================================== */
.zm-pricing-single-grid {
    margin-top: 38px;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 24px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.zm-price-single {
       height: 100%;
}

.zm-price-features-two {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 22px;
    row-gap: 12px;
    line-height: 1.55;
}

 

.zm-price-trust-card {
    padding: 30px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(25,210,205,0.16), transparent 34%),
        rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 24px 70px rgba(0,0,0,0.22);
    color: #ffffff;
}


.zm-price-trust-card {
    background:
        radial-gradient(circle at top right,
        rgba(25,210,205,0.20),
        transparent 30%),

        linear-gradient(135deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03));

    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(10px);
}

.zm-price-features div span {
    color: #1597ff;
    margin-right: 10px;
    font-weight: 900;
}

.zm-price-bottom {
    margin-top: 24px;

    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;

    color: #5d7086;

    font-size: 14px;
    font-weight: 700;
}

.zm-price-card .zm-btn {
    min-height: 58px;
    font-size: 20px;
    border-radius: 18px;
}

.zm-price-trust-logo {
    width: 100%;
    height: 160px;

    border-radius: 22px;

    background:
        linear-gradient(135deg,
        rgba(255,255,255,0.10),
        rgba(255,255,255,0.04));

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;
}

.zm-price-trust-logo img {
    width: 320px;
    max-width: 90%;
}

.zm-price-trust-card h3 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.zm-price-trust-card p {
    color: #c6d8ea;
    font-size: 16px;
    line-height: 1.65;
}

.zm-price-trust-list {
    margin-top: 26px;
    display: grid;
    gap: 14px;
}

.zm-price-trust-list div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
}

.zm-price-trust-list strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
}

.zm-price-trust-list span {
    display: block;
    color: #b7cbe0;
    font-size: 14px;
    line-height: 1.45;
}

@media (max-width: 1100px) {
    .zm-pricing-single-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .zm-price-features-two {
        grid-template-columns: 1fr;
    }
}
.zm-price-divider {
    width: 100%;
    height: 1px;
    margin: 24px 0 24px;
    background: rgba(15,23,42,0.10);
}
 

.zm-software-preview {
    width:95%;
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 0%, rgba(0, 220, 255, 0.20), transparent 35%),
        linear-gradient(145deg, rgba(14, 37, 63, 0.96), rgba(6, 22, 40, 0.98));
    border: 1px solid rgba(120, 210, 255, 0.20);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.zm-preview-glow{
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    top: -90px;
    background: rgba(0, 200, 255, 0.20);
    filter: blur(55px);
    border-radius: 50%;
    pointer-events: none;
}

.zm-preview-top{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.zm-preview-label{
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 800;
    color: #25d7ff;
    letter-spacing: 0.04em;
}

.zm-preview-top strong{
    display: block;
    font-size: 23px;
    color: #ffffff;
}

.zm-preview-status{
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    color: #35ffd0;
    background: rgba(53, 255, 208, 0.12);
    border: 1px solid rgba(53, 255, 208, 0.18);
}

.zm-preview-stats{
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.zm-stat-box{
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.zm-stat-box span{
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(225, 240, 255, 0.70);
}

.zm-stat-box strong{
    font-size: 26px;
    color: #ffffff;
}

.zm-preview-table{
    position: relative;
    padding: 14px;
    border-radius: 24px;
    background: rgba(3, 18, 34, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
}

.zm-table-head,
.zm-table-row{
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 0.9fr 0.8fr;
    gap: 12px;
    align-items: center;
}

.zm-table-head{
    padding: 8px 10px 12px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(220, 235, 255, 0.48);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.zm-table-row{
    padding: 14px 10px;
    border-radius: 16px;
    color: rgba(235, 245, 255, 0.86);
    font-size: 14px;
    font-weight: 700;
}

.zm-table-row + .zm-table-row{
    margin-top: 6px;
}

.zm-table-row:nth-child(even){
    background: rgba(255, 255, 255, 0.055);
}

.zm-table-row strong{
    color: #ffffff;
    text-align: right;
}

.zm-table-row em{
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.zm-table-row em.paid{
    color: #34ffd2;
    background: rgba(52, 255, 210, 0.12);
}

.zm-table-row em.open{
    color: #35b7ff;
    background: rgba(53, 183, 255, 0.13);
}

.zm-table-row em.warning{
    color: #ffc45c;
    background: rgba(255, 196, 92, 0.14);
}

.zm-preview-bottom{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.zm-preview-bottom div{
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.zm-preview-bottom span{
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    color: rgba(225, 240, 255, 0.62);
    font-weight: 700;
}

.zm-preview-bottom strong{
    display: block;
    font-size: 14px;
    color: #ffffff;
}

@media (max-width: 900px){
    .zm-preview-stats,
    .zm-preview-bottom{
        grid-template-columns: 1fr;
    }

    .zm-table-head{
        display: none;
    }

    .zm-table-row{
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .zm-table-row strong{
        text-align: left;
    }
    
}

/* =========================================================
   # LAPTOP 15 ZOLL
========================================================= */
@media (min-width: 1366px) and (max-width: 1599px){

    .zm-hero{
        padding: 90px 0 70px;
    }

    .zm-hero-grid{
        gap: 55px;
        align-items: center;
    }

    .zm-hero-content h1{
        font-size: 62px;
        line-height: 1.08;
        max-width: 760px;
    }

    .zm-hero-text{
        max-width: 760px;
        font-size: 22px;
        line-height: 1.7;
    }

    .zm-software-preview{
        padding: 28px;
        border-radius: 30px;
    }

    .zm-preview-top strong{
        font-size: 22px;
    }

    .zm-stat-box{
        padding: 17px;
    }

    .zm-stat-box strong{
        font-size: 24px;
    }

    .zm-table-row{
        padding: 13px 10px;
        font-size: 13px;
    }

    .zm-preview-bottom div{
        padding: 15px 16px;
    }

    .zm-trust-row{
        gap: 12px;
    }

    .zm-trust-row span{
        font-size: 14px;
        padding: 11px 18px;
    }
        .zm-software-preview {
    width: 480px;
    }
}


 /* =========================================================
   # LAPTOP 15 ZOLL
========================================================= */
@media (min-width: 1366px) and (max-width: 1599px){

    .zm-software-preview{
        width: 475px;
        max-width: 475px;
        margin-left: auto;
    }

}


 .zm-nav{
    display: flex;
    align-items: center;
    gap: 14px;
}

.zm-nav a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 24px;
    border-radius: 999px;
    background: rgba(40, 62, 95, 0.88);
    border: 1px solid rgba(255,255,255,0.10);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 8px 20px rgba(0,0,0,0.18);
}

.zm-nav a:hover{
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0b5bd3, #1ea7ff);
    border-color: rgba(80,180,255,0.45);
    box-shadow:
        0 12px 30px rgba(0,120,255,0.25),
        inset 0 1px 0 rgba(255,255,255,0.08);
        color:#ffffff;
}