.zm-services-hero,
.zm-services-hero * {
    box-sizing: border-box;
}

.zm-services-hero {
    --zm-hero-max-width: 1280px;
    --zm-hero-transition: 580ms;
    --zm-bg: #050504;
    --zm-panel: rgba(255, 255, 255, 0.1);
    --zm-panel-strong: rgba(255, 255, 255, 0.17);
    --zm-line: rgba(255, 255, 255, 0.16);
    --zm-text: #fff8f3;
    --zm-muted: #d8c9c0;
    --zm-brand-primary: #dc692d;
    --zm-brand-secondary: #f5965f;
    --zm-green: var(--zm-brand-primary);
    --zm-cyan: var(--zm-brand-secondary);
    --zm-amber: #ffb45f;
    --zm-rose: #b94624;
    --zm-violet: #67564d;
    --zm-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    color: var(--zm-text);
    background:
        linear-gradient(135deg, rgba(220, 105, 45, 0.2) 0 20%, transparent 20% 100%),
        linear-gradient(205deg, rgba(245, 150, 95, 0.14) 0 26%, transparent 26% 100%),
        linear-gradient(320deg, rgba(255, 180, 95, 0.12) 0 18%, transparent 18% 100%),
        var(--zm-bg);
    isolation: isolate;
}

.zm-services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.zm-services-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 34%;
    background:
        linear-gradient(90deg, rgba(185, 70, 36, 0.18), transparent 34%),
        linear-gradient(270deg, rgba(245, 150, 95, 0.16), transparent 38%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent);
    pointer-events: none;
}

.zm-services-hero a {
    color: inherit;
    text-decoration: none;
}

.zm-services-hero__slider {
    position: relative;
    max-width: var(--zm-hero-max-width);
    min-height: 760px;
    margin: 0 auto;
    padding: 92px 32px 76px;
}

.zm-services-hero__stage {
    position: relative;
    min-height: 590px;
}

.zm-service-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
    gap: 72px;
    align-items: center;
    opacity: 0;
    filter: blur(10px);
    pointer-events: none;
    transform: translate3d(44px, 0, 0) scale(0.982);
    transition:
        opacity var(--zm-hero-transition) cubic-bezier(0.22, 1, 0.36, 1),
        transform var(--zm-hero-transition) cubic-bezier(0.22, 1, 0.36, 1),
        filter var(--zm-hero-transition) cubic-bezier(0.22, 1, 0.36, 1);
}

.zm-service-slide.is-active {
    z-index: 2;
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
}

.zm-service-slide.is-leaving {
    z-index: 1;
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(-36px, 0, 0) scale(0.982);
}

.zm-service-slide__copy {
    max-width: 610px;
    min-width: 0;
	margin-top:80px;
}

.zm-service-slide__eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 0 0 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--zm-green);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

.zm-service-slide__title {
    max-width: 11.5em;
    margin: 0;
    color: var(--zm-text);
    font-size: 64px;
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.zm-service-slide__text {
    max-width: 35em;
    margin: 24px 0 0;
    color: var(--zm-muted);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0;
}

.zm-service-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.zm-service-slide__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        color 180ms ease;
}

.zm-service-slide__button:hover,
.zm-service-slide__button:focus-visible {
    transform: translateY(-2px);
}

.zm-service-slide__button--primary {
    border: 1px solid transparent;
    background: var(--zm-green);
    color: #050504;
    box-shadow: 0 12px 30px rgba(220, 105, 45, 0.28);
}

.zm-service-slide__button--secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: var(--zm-text);
}

.zm-service-slide__button--secondary:hover,
.zm-service-slide__button--secondary:focus-visible {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.13);
}

.zm-service-slide__visual {
    position: relative;
    display: grid;
    min-height: 550px;
    min-width: 0;
    place-items: center;
    perspective: 1200px;
}

.zm-services-hero__footer {
    position: absolute;
    right: 32px;
    bottom: 34px;
    left: 32px;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    pointer-events: none;
}

.zm-services-hero__footer > * {
    pointer-events: auto;
}

.zm-services-hero__arrows {
    display: flex;
    gap: 10px;
}

.zm-services-hero__arrow {
    position: relative;
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    appearance: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--zm-text);
    cursor: pointer;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.zm-services-hero__arrow:hover,
.zm-services-hero__arrow:focus-visible {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.zm-services-hero__arrow span {
    width: 12px;
    height: 12px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: translateX(2px) rotate(-45deg);
}

.zm-services-hero__arrow--next span {
    transform: translateX(-2px) rotate(135deg);
}

.zm-services-hero__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.zm-services-hero__dot {
    display: inline-flex;
    width: 34px;
    height: 16px;
    align-items: center;
    justify-content: center;
    border: 0;
    appearance: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.zm-services-hero__dot span {
    display: block;
    width: 22px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    transition:
        width 180ms ease,
        background-color 180ms ease,
        transform 180ms ease;
}

.zm-services-hero__dot:hover span,
.zm-services-hero__dot:focus-visible span {
    background: rgba(255, 255, 255, 0.72);
}

.zm-services-hero__dot.is-active span {
    width: 32px;
    background: var(--zm-green);
}

.zm-visual-scene {
    position: relative;
    width: min(100%, 580px);
    aspect-ratio: 1.08;
    transform-style: preserve-3d;
}

.zm-visual-scene::before {
    content: "";
    position: absolute;
    inset: 9% 4% 6%;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(135deg, rgba(220, 105, 45, 0.1), transparent 48%),
        linear-gradient(315deg, rgba(245, 150, 95, 0.09), transparent 52%),
        rgba(255, 255, 255, 0.04);
    box-shadow: var(--zm-shadow);
    transform: rotateX(58deg) rotateZ(-18deg) translate3d(0, 18px, -84px);
}

.zm-browser-card,
.zm-storefront-card,
.zm-seo-panel,
.zm-phone,
.zm-brand-board,
.zm-task-board,
.zm-growth-dashboard {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(12, 14, 20, 0.82);
    box-shadow: var(--zm-shadow);
    backdrop-filter: blur(18px);
}

.zm-float-a,
.zm-float-b,
.zm-float-c {
    will-change: transform;
}

.zm-service-slide.is-active .zm-float-a {
    animation: zmFloatA 5.2s ease-in-out infinite;
}

.zm-service-slide.is-active .zm-float-b {
    animation: zmFloatB 4.8s ease-in-out infinite;
}

.zm-service-slide.is-active .zm-float-c {
    animation: zmFloatC 5.6s ease-in-out infinite;
}

.zm-browser-card {
    top: 9%;
    left: 2%;
    width: 68%;
    min-height: 66%;
    padding: 18px;
    transform: rotateY(-8deg) rotateX(5deg);
}

.zm-browser-card__top {
    display: flex;
    gap: 7px;
    margin-bottom: 18px;
}

.zm-browser-card__top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--zm-rose);
}

.zm-browser-card__top span:nth-child(2) {
    background: var(--zm-amber);
}

.zm-browser-card__top span:nth-child(3) {
    background: var(--zm-green);
}

.zm-browser-card__hero {
    min-height: 142px;
    padding: 18px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(220, 105, 45, 0.26), rgba(245, 150, 95, 0.12)),
        rgba(255, 255, 255, 0.06);
}

.zm-pill {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(220, 105, 45, 0.16);
    color: var(--zm-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.zm-browser-card__hero strong,
.zm-storefront-card strong,
.zm-seo-panel strong,
.zm-task-board strong {
    display: block;
    color: var(--zm-text);
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: 0;
}

.zm-browser-card__hero em {
    display: block;
    width: 72%;
    height: 10px;
    margin-top: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
}

.zm-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.zm-product-grid span {
    display: block;
    min-height: 72px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent),
        rgba(255, 255, 255, 0.08);
}

.zm-service-slide.is-active .zm-product-grid span {
    animation: zmProductPulse 2.4s ease-in-out infinite;
}

.zm-product-grid span:nth-child(2) {
    animation-delay: 120ms;
}

.zm-product-grid span:nth-child(3) {
    animation-delay: 240ms;
}

.zm-product-grid span:nth-child(4) {
    animation-delay: 360ms;
}

.zm-metric-card {
    position: absolute;
    top: 10%;
    right: 4%;
    width: 148px;
    min-height: 148px;
    padding: 18px;
    border: 1px solid rgba(220, 105, 45, 0.3);
    border-radius: 8px;
    background: rgba(17, 13, 11, 0.9);
    box-shadow: var(--zm-shadow);
}

.zm-metric-card span,
.zm-push-card span,
.zm-growth-dashboard__top span {
    display: block;
    color: var(--zm-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.zm-metric-card strong {
    display: block;
    margin-top: 8px;
    color: var(--zm-green);
    font-size: 54px;
    line-height: 1;
    letter-spacing: 0;
}

.zm-metric-card i {
    display: block;
    width: 100%;
    height: 8px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--zm-green), var(--zm-cyan));
}

.zm-checkout-line {
    position: absolute;
    right: 1%;
    bottom: 13%;
    display: flex;
    min-width: 260px;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(12, 14, 20, 0.88);
    box-shadow: var(--zm-shadow);
}

.zm-checkout-line span {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--zm-green), var(--zm-cyan));
}

.zm-checkout-line strong {
    color: var(--zm-text);
    font-size: 14px;
    letter-spacing: 0;
}

.zm-market-ring {
    position: absolute;
    inset: 8% 7% 9%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: zmOrbit 16s linear infinite;
}

.zm-market-ring span {
    position: absolute;
    display: inline-flex;
    min-width: 88px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--zm-text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: var(--zm-shadow);
}

.zm-market-ring span:nth-child(1) {
    top: -19px;
    left: calc(50% - 44px);
    border: 1px solid rgba(255, 180, 95, 0.38);
}

.zm-market-ring span:nth-child(2) {
    right: -28px;
    bottom: 28%;
    border: 1px solid rgba(245, 150, 95, 0.38);
}

.zm-market-ring span:nth-child(3) {
    bottom: 14%;
    left: -22px;
    border: 1px solid rgba(185, 70, 36, 0.42);
}

.zm-storefront-card {
    top: 23%;
    left: 18%;
    width: 64%;
    padding: 24px;
    transform: rotateY(-6deg) rotateX(5deg);
}

.zm-storefront-card__awning {
    height: 54px;
    margin-bottom: 18px;
    border-radius: 8px;
    background:
        repeating-linear-gradient(90deg, var(--zm-amber) 0 24px, var(--zm-rose) 24px 48px, var(--zm-cyan) 48px 72px),
        rgba(255, 255, 255, 0.1);
}

.zm-channel-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.zm-channel-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--zm-muted);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
}

.zm-channel-list i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--zm-green);
}

.zm-seo-panel {
    top: 12%;
    left: 12%;
    width: 62%;
    min-height: 66%;
    padding: 24px;
    transform: rotateY(-7deg) rotateX(6deg);
}

.zm-score-ring {
    display: inline-grid;
    width: 88px;
    height: 88px;
    margin-bottom: 14px;
    place-items: center;
    border: 10px solid rgba(220, 105, 45, 0.25);
    border-top-color: var(--zm-green);
    border-radius: 50%;
    color: var(--zm-green);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
}

.zm-service-slide.is-active .zm-score-ring {
    animation: zmSpinSoft 4s ease-in-out infinite;
}

.zm-keyword-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.zm-keyword-row span {
    width: 72px;
    height: 24px;
    border-radius: 8px;
    background: rgba(245, 150, 95, 0.18);
}

.zm-copy-lines {
    display: grid;
    gap: 9px;
    margin-top: 22px;
}

.zm-copy-lines i {
    display: block;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

.zm-copy-lines i:nth-child(2) {
    width: 86%;
}

.zm-copy-lines i:nth-child(3) {
    width: 74%;
}

.zm-copy-lines i:nth-child(4) {
    width: 54%;
}

.zm-search-card {
    position: absolute;
    top: 13%;
    right: 4%;
    display: flex;
    min-width: 230px;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(12, 14, 20, 0.9);
    box-shadow: var(--zm-shadow);
}

.zm-search-card i {
    width: 18px;
    height: 18px;
    border: 2px solid var(--zm-cyan);
    border-radius: 50%;
}

.zm-search-card span {
    color: var(--zm-text);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
}

.zm-image-stack {
    position: absolute;
    right: 8%;
    bottom: 12%;
    display: grid;
    gap: 10px;
}

.zm-image-stack span {
    display: block;
    width: 172px;
    height: 76px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 180, 95, 0.26), transparent),
        rgba(255, 255, 255, 0.09);
    box-shadow: var(--zm-shadow);
}

.zm-phone {
    top: 4%;
    left: 30%;
    width: 210px;
    min-height: 430px;
    padding: 18px 16px;
    border-radius: 28px;
    transform: rotateY(-12deg) rotateX(5deg);
}

.zm-phone__speaker {
    width: 62px;
    height: 6px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

.zm-phone__banner {
    height: 118px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(220, 105, 45, 0.32), rgba(245, 150, 95, 0.22)),
        rgba(255, 255, 255, 0.08);
}

.zm-phone__products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.zm-phone__products span {
    height: 100px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
        rgba(255, 255, 255, 0.08);
}

.zm-phone__nav {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    justify-content: space-around;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
}

.zm-phone__nav i {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--zm-green);
}

.zm-push-card,
.zm-sync-card,
.zm-brand-badge,
.zm-support-bubble,
.zm-strategy-card,
.zm-roi-card {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(12, 14, 20, 0.88);
    box-shadow: var(--zm-shadow);
    color: var(--zm-text);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
}

.zm-push-card {
    top: 16%;
    right: 9%;
    width: 188px;
    padding: 17px;
}

.zm-push-card strong {
    display: block;
    margin-top: 6px;
    color: var(--zm-text);
    font-size: 16px;
    letter-spacing: 0;
}

.zm-sync-card {
    bottom: 18%;
    left: 9%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
}

.zm-sync-card span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--zm-cyan);
}

.zm-brand-board {
    top: 9%;
    left: 12%;
    width: 68%;
    padding: 24px;
    transform: rotateY(-7deg) rotateX(6deg);
}

.zm-logo-mark {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--zm-green), var(--zm-cyan));
    color: #050504;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 0;
}

.zm-swatch-row {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.zm-swatch-row span {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.zm-swatch-row span:nth-child(1) {
    background: var(--zm-green);
}

.zm-swatch-row span:nth-child(2) {
    background: var(--zm-cyan);
}

.zm-swatch-row span:nth-child(3) {
    background: var(--zm-amber);
}

.zm-swatch-row span:nth-child(4) {
    background: var(--zm-rose);
}

.zm-banner-preview {
    height: 108px;
    margin-top: 20px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(220, 105, 45, 0.28), transparent 58%),
        linear-gradient(135deg, rgba(103, 86, 77, 0.24), rgba(255, 180, 95, 0.16)),
        rgba(255, 255, 255, 0.08);
}

.zm-setup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.zm-setup-grid span {
    display: grid;
    min-height: 44px;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--zm-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.zm-brand-badge {
    right: 10%;
    bottom: 15%;
    padding: 18px 20px;
    color: var(--zm-green);
}

.zm-flow-core {
    position: absolute;
    top: 39%;
    left: calc(50% - 58px);
    display: grid;
    width: 116px;
    height: 116px;
    place-items: center;
    border: 1px solid rgba(220, 105, 45, 0.38);
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(220, 105, 45, 0.26), rgba(245, 150, 95, 0.16)),
        rgba(12, 14, 20, 0.9);
    box-shadow: var(--zm-shadow);
    color: var(--zm-green);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
}

.zm-flow-node {
    position: absolute;
    z-index: 2;
    display: grid;
    min-width: 132px;
    min-height: 54px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(12, 14, 20, 0.9);
    box-shadow: var(--zm-shadow);
    color: var(--zm-text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.zm-flow-node--one {
    top: 10%;
    left: 12%;
}

.zm-flow-node--two {
    top: 13%;
    right: 10%;
}

.zm-flow-node--three {
    right: 8%;
    bottom: 15%;
}

.zm-flow-node--four {
    bottom: 12%;
    left: 9%;
}

.zm-flow-line {
    position: absolute;
    z-index: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--zm-green), transparent);
    transform-origin: left center;
}

.zm-flow-line--a {
    top: 28%;
    left: 30%;
    width: 180px;
    transform: rotate(28deg);
}

.zm-flow-line--b {
    top: 32%;
    right: 28%;
    width: 170px;
    transform: rotate(150deg);
}

.zm-flow-line--c {
    right: 26%;
    bottom: 31%;
    width: 176px;
    transform: rotate(28deg);
}

.zm-flow-line--d {
    bottom: 31%;
    left: 28%;
    width: 172px;
    transform: rotate(150deg);
}

.zm-service-slide.is-active .zm-flow-line {
    animation: zmFlowPulse 1.7s ease-in-out infinite;
}

.zm-task-board {
    top: 10%;
    left: 13%;
    width: 68%;
    padding: 24px;
    transform: rotateY(-7deg) rotateX(6deg);
}

.zm-task-board span {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 13px;
    padding: 13px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--zm-muted);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
}

.zm-task-board i {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--zm-green);
}

.zm-support-bubble {
    top: 17%;
    right: 9%;
    padding: 16px 18px;
    color: var(--zm-cyan);
}

.zm-avatar-stack {
    position: absolute;
    right: 14%;
    bottom: 14%;
    display: flex;
}

.zm-avatar-stack span {
    display: block;
    width: 58px;
    height: 58px;
    margin-left: -12px;
    border: 3px solid rgba(8, 9, 13, 0.9);
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent),
        var(--zm-amber);
    box-shadow: var(--zm-shadow);
}

.zm-avatar-stack span:nth-child(2) {
    background-color: var(--zm-cyan);
}

.zm-avatar-stack span:nth-child(3) {
    background-color: var(--zm-rose);
}

.zm-growth-dashboard {
    top: 12%;
    left: 12%;
    width: 67%;
    padding: 24px;
    transform: rotateY(-7deg) rotateX(6deg);
}

.zm-growth-dashboard__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.zm-growth-dashboard__top strong {
    color: var(--zm-green);
    font-size: 44px;
    line-height: 1;
    letter-spacing: 0;
}

.zm-chart-bars {
    display: flex;
    height: 210px;
    align-items: end;
    gap: 12px;
    margin-top: 26px;
}

.zm-chart-bars i {
    display: block;
    flex: 1;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, var(--zm-green), rgba(245, 150, 95, 0.34));
    transform-origin: bottom;
}

.zm-chart-bars i:nth-child(1) {
    height: 36%;
}

.zm-chart-bars i:nth-child(2) {
    height: 54%;
}

.zm-chart-bars i:nth-child(3) {
    height: 48%;
}

.zm-chart-bars i:nth-child(4) {
    height: 72%;
}

.zm-chart-bars i:nth-child(5) {
    height: 92%;
}

.zm-service-slide.is-active .zm-chart-bars i {
    animation: zmBarRise 1.8s ease-in-out infinite alternate;
}

.zm-report-row {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.1fr;
    gap: 10px;
    margin-top: 18px;
}

.zm-report-row span {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.zm-strategy-card {
    top: 18%;
    right: 9%;
    padding: 17px 18px;
    color: var(--zm-amber);
}

.zm-roi-card {
    right: 12%;
    bottom: 13%;
    padding: 17px 18px;
    color: var(--zm-cyan);
}

@keyframes zmFloatA {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotateY(-7deg) rotateX(6deg);
    }
    50% {
        transform: translate3d(0, -13px, 24px) rotateY(-4deg) rotateX(4deg);
    }
}

@keyframes zmFloatB {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(8px, -16px, 26px);
    }
}

@keyframes zmFloatC {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-8px, 14px, 22px);
    }
}

@keyframes zmProductPulse {
    0%,
    100% {
        opacity: 0.78;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

@keyframes zmOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes zmSpinSoft {
    0%,
    100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(12deg);
    }
}

@keyframes zmFlowPulse {
    0%,
    100% {
        opacity: 0.34;
    }
    50% {
        opacity: 1;
    }
}

@keyframes zmBarRise {
    from {
        transform: scaleY(0.82);
    }
    to {
        transform: scaleY(1);
    }
}

@media (max-width: 1180px) {
    .zm-services-hero__slider {
        min-height: 720px;
        padding-right: 28px;
        padding-left: 28px;
    }

    .zm-service-slide {
        grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
        gap: 46px;
    }

    .zm-service-slide__title {
        font-size: 54px;
    }

    .zm-service-slide__text {
        font-size: 18px;
    }

    .zm-service-slide__visual {
        min-height: 500px;
    }
}

@media (max-width: 900px) {
    .zm-services-hero__slider {
        min-height: 920px;
        padding: 78px 22px 86px;
    }

    .zm-services-hero__stage {
        min-height: 760px;
    }

    .zm-service-slide {
        grid-template-columns: 1fr;
        gap: 34px;
        align-content: center;
    }

    .zm-service-slide__copy {
        max-width: 720px;
    }

    .zm-service-slide__title {
        max-width: 12.4em;
        font-size: 44px;
        line-height: 1.04;
    }

    .zm-service-slide__visual {
        min-height: 410px;
    }

    .zm-visual-scene {
        width: min(100%, 500px);
    }

    .zm-services-hero__footer {
        right: 22px;
        bottom: 28px;
        left: 22px;
    }
}

@media (max-width: 640px) {
    .zm-services-hero__slider {
        min-height: 870px;
        padding: 58px 16px 82px;
    }

    .zm-services-hero__stage {
        min-height: 730px;
    }

    .zm-service-slide {
        gap: 28px;
        transform: translate3d(0, 18px, 0) scale(0.99);
    }

    .zm-service-slide.is-active {
        transform: translate3d(0, 0, 0) scale(1);
    }

    .zm-service-slide.is-leaving {
        transform: translate3d(0, -18px, 0) scale(0.99);
    }

    .zm-service-slide.is-active .zm-float-a,
    .zm-service-slide.is-active .zm-float-b,
    .zm-service-slide.is-active .zm-float-c {
        animation: none;
    }

    .zm-service-slide__eyebrow {
        min-height: 30px;
        margin-bottom: 14px;
        padding: 7px 10px;
        font-size: 12px;
    }

    .zm-service-slide__title {
        font-size: 34px;
    }

    .zm-service-slide__text {
        margin-top: 18px;
        max-width: 100%;
        font-size: 16px;
        line-height: 1.58;
        overflow-wrap: break-word;
    }

    .zm-service-slide__actions {
        gap: 10px;
        margin-top: 24px;
    }

    .zm-service-slide__button {
        min-height: 48px;
        padding: 0 16px;
        font-size: 14px;
    }

    .zm-service-slide__visual {
        min-height: 350px;
    }

    .zm-visual-scene {
        width: min(100%, 340px);
    }

    .zm-browser-card,
    .zm-storefront-card,
    .zm-seo-panel,
    .zm-brand-board,
    .zm-task-board,
    .zm-growth-dashboard {
        width: 74%;
        left: 6%;
        padding: 16px;
    }

    .zm-phone {
        left: 25%;
        width: 168px;
        min-height: 340px;
        border-radius: 24px;
    }

    .zm-metric-card,
    .zm-push-card,
    .zm-search-card,
    .zm-checkout-line {
        transform: scale(0.72);
        transform-origin: right top;
    }

    .zm-metric-card {
        right: 0;
    }

    .zm-checkout-line {
        right: 0;
        min-width: 220px;
    }

    .zm-checkout-line strong {
        font-size: 13px;
    }

    .zm-market-ring span,
    .zm-flow-node {
        transform: scale(0.84);
    }

    .zm-flow-core {
        width: 92px;
        height: 92px;
        left: calc(50% - 46px);
        font-size: 18px;
    }

    .zm-flow-line {
        width: 120px;
    }

    .zm-services-hero__footer {
        align-items: flex-end;
        gap: 14px;
    }

    .zm-services-hero__arrows {
        gap: 8px;
    }

    .zm-services-hero__arrow {
        width: 42px;
        height: 42px;
    }

    .zm-services-hero__dots {
        max-width: 230px;
        gap: 4px;
    }

    .zm-services-hero__dot {
        width: 20px;
    }

    .zm-services-hero__dot span {
        width: 14px;
    }

    .zm-services-hero__dot.is-active span {
        width: 22px;
    }
}

@media (max-width: 430px) {
    .zm-services-hero__slider {
        min-height: 900px;
    }

    .zm-service-slide__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .zm-service-slide__button {
        width: 100%;
    }

    .zm-service-slide__visual {
        min-height: 330px;
    }

    .zm-visual-scene {
        width: 320px;
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zm-services-hero *,
    .zm-services-hero *::before,
    .zm-services-hero *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}
