.theme-passwordshare .product-use-case-item,
.theme-passwordshare .product-story blockquote {
    border-color: rgba(5, 150, 105, 0.25);
}

.theme-passwordshare .product-use-cases .product-use-case-item {
    min-height: 190px;
    padding: 1.05rem 1.1rem;
}

.theme-passwordshare .how-it-works-split .how-it-works-split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: center;
    margin-top: 2.5rem;
    overflow: visible;
}

.theme-passwordshare .how-it-works-split .steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0;
}

.theme-passwordshare .how-it-works-split .step-tilt {
    transform: rotate(-1.1deg) !important;
}

.theme-passwordshare .how-it-works-split .step-tilt {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.theme-passwordshare .how-it-works-split .step-tilt:hover {
    transform: translateY(-4px) rotate(0deg);
}

.theme-passwordshare .how-it-works-split .how-it-works-image-overlap {
    margin-top: 0;
    margin-left: -3.5rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 2;
    animation: floatingTilt 6s ease-in-out infinite;
    overflow: visible;
}

.theme-passwordshare .how-it-works-split .how-it-works-image-overlap img {
    border: none;
    box-shadow: 0 22px 34px rgba(6, 95, 70, 0.18);
    transform: rotate(1.4deg);
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.theme-passwordshare .how-it-works-split .how-it-works-image-overlap img:hover {
    transform: rotate(0deg) scale(1.01);
}

@keyframes floatingTilt {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-7px) rotate(0.6deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@media (max-width: 1024px) {
    .theme-passwordshare .how-it-works-split .how-it-works-split-layout {
        grid-template-columns: 1fr;
    }

    .theme-passwordshare .how-it-works-split .how-it-works-image-overlap {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .theme-passwordshare .comparison {
        display: none;
    }

    .theme-passwordshare .how-it-works-split .step-tilt,
    .theme-passwordshare .how-it-works-split .step-tilt:hover {
        transform: none !important;
    }

    .theme-passwordshare .how-it-works-split .how-it-works-image-overlap {
        animation: none;
    }

    .theme-passwordshare .how-it-works-split .how-it-works-image-overlap img,
    .theme-passwordshare .how-it-works-split .how-it-works-image-overlap img:hover {
        transform: none;
    }
}

.theme-passwordshare .features-rotator .features-rotator-viewport {
    overflow: hidden;
    padding: 0.25rem;
}

.theme-passwordshare .features-rotator .features-rotator-shell {
    position: relative;
    padding: 0 2.8rem;
}

.theme-passwordshare .features-rotator .features-rotator-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(5, 150, 105, 0.25);
    border-radius: 999px;
    background: #ffffff;
    color: #047857;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.theme-passwordshare .features-rotator .features-rotator-arrow:hover {
    transform: translateY(calc(-50% - 1px));
    background: #ecfdf5;
    box-shadow: 0 6px 14px rgba(6, 95, 70, 0.12);
}

.theme-passwordshare .features-rotator .features-rotator-arrow-left {
    left: 0;
}

.theme-passwordshare .features-rotator .features-rotator-arrow-right {
    right: 0;
}

.theme-passwordshare .features-rotator .features-rotator-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.7s ease;
    will-change: transform;
}

.theme-passwordshare .features-rotator .features-rotator-track .feature-item {
    flex: 0 0 calc((100% - 3rem) / 3);
}

@media (max-width: 1024px) {
    .theme-passwordshare .features-rotator .features-rotator-track .feature-item {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 768px) {
    .theme-passwordshare .features-rotator .features-rotator-shell {
        padding: 0 2.4rem;
    }

    .theme-passwordshare .features-rotator .features-rotator-track .feature-item {
        flex: 0 0 100%;
    }
}

.theme-passwordshare .product-story-quote-only {
    background: #ffffff;
    padding-top: 4rem;
    position: relative;
    overflow: visible;
}

.theme-passwordshare .product-story-quote-only::before,
.theme-passwordshare .product-story-quote-only::after,
.theme-passwordshare .product-story-quote-only .container::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(6px);
    z-index: 0;
}

.theme-passwordshare .product-story-quote-only::before {
    width: 320px;
    height: 320px;
    top: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(16, 185, 129, 0) 72%);
}

.theme-passwordshare .product-story-quote-only::after {
    width: 260px;
    height: 260px;
    right: 4%;
    bottom: -70px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, rgba(20, 184, 166, 0) 74%);
}

.theme-passwordshare .product-story-quote-only .container {
    position: relative;
    z-index: 1;
}

.theme-passwordshare .product-story-quote-only .container::before {
    width: 220px;
    height: 220px;
    left: 42%;
    top: -40px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.18) 0%, rgba(45, 212, 191, 0) 72%);
}

.theme-passwordshare .product-story-quote-only blockquote {
    border-left: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.35;
    font-weight: 700;
    color: #0d294e;
    text-align: center;
}

.theme-passwordshare .product-story-quote-only footer {
    margin-top: 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: #4a5568;
    text-align: center;
}
